
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#ffffff;
    color:#333;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:1200px;
    margin:0 auto;
    padding: 0 15px;
}
section{
    scroll-margin-top: 100px;   /* Adjust according to your navbar height */
}


/*====================================
Navigation
====================================*/

/*=========================
NAVBAR
=========================*/

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#2d3bdc;
    z-index:1000;
}

.navbar{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:60px;
    padding: 5px;
}

/* Logo */

.logo img{
    height:55px;
    display:block;
    margin-left: 5px;
}

/* Menu */

.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
}

.nav-links li{
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#fff;
    font-size:12px;      /* Reduced font size */
    font-weight:600;
    text-transform:uppercase;
    transition:.3s;
}

.nav-links a:hover{
    color:#ffe8a3;
}

/* Active menu */

.nav-links a.active{
    background:#B71C1C;
    padding:12px 18px;
    border-radius:6px;
}
/*====================================
Hero Banner
====================================*/

/*====================================
HERO SECTION
====================================*/

.hero{
    width:100%;
    height:700px;
    background-image:url("./bag.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    max-width:800px;
    padding:20px;
}

.hero-content h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:15px;
    margin-top: 0px;
}

.hero-content h3{
    font-size:32px;
    color:#ffd700;
    margin-bottom:20px;
}

.hero-content p{
    font-size:20px;
    line-height:32px;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    padding:15px 40px;
    background:#d62d2d;
    color:#fff;
    border-radius:5px;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    background:#fff;
    color:#d62d2d;
}
/*====================================
SECTION TITLE
====================================*/

section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:30px;
}

.section-title h2{
    font-size:40px;
    color:#222;
    font-weight:700;
    position:relative;
    display:inline-block;
    padding-bottom:15px;
}

.section-title h2::after{
    content:'';
    position:absolute;
    width:80px;
    height:4px;
    background:#d62d2d;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
}

/*====================================
ABOUT
====================================*/

.about-section{

    position:relative;

    width:100%;

    height:650px;

    overflow:hidden;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:left;

    animation:aboutSlider 30s infinite;

    background-size:cover;

    background-position:center;

}

.about-overlay{

    position:absolute;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.55);
    inset: 0;

}

.about-content{
    position:relative;
    width: 100%;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 100px;
    margin: 0px;
    text-align: left justify;

    text-align:left;
}


.about-content h2{
    font-size:40px;
    color:#ffffff;
    margin-bottom:25px;
    font-weight:700;
}

.about-content p{
    color:#e6e6e6;
    font-size:19px;
    line-height:1.9;
    margin-bottom:20px;
}

.about-btn{

    display:inline-block;

    margin-top:20px;

    padding:15px 35px;

    background:#ff3b30;

    color:#fff;

    text-decoration:none;

    border-radius:5px;
    font-weight:600;
}
@keyframes aboutSlider{

0%{

background-image:url("./hydrulic.png");

}

16.66%{

background-image:url("./Turnkey.png");

}

33.33%{

background-image:url("./testing.png");

}

50%{

background-image:url("./Custom.png");

}

66.66%{

background-image:url("./Automation.png");

}

83.33%{

background-image:url("./Validation.png");

}

100%{

background-image:url("./hydrulic.png");

}

}
/* ===========================
CEO SECTION
=========================== */

.ceo-section{

    position:relative;
    padding:100px 0;

    background:url("./ceobg.jpg") center center/cover no-repeat;

}

.ceo-overlay{

    position:absolute;
    inset:0;

    background:rgba(34, 80, 160, 0.75);

}

.ceo-section .container{

    position:relative;
    z-index:2;

}

.ceo-container{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:80px;

}

.ceo-content{

    flex:1;

    color:#fff;

}

.section-tag{

    color:#ff4040;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.ceo-content h2{

    font-size:52px;

    color:#fff;

    margin:15px 0;

}

.ceo-content h3{

    font-size:34px;

    margin-bottom:10px;

}

.designation{

    color:#d7d7d7;

    margin-bottom:30px;

}

.ceo-content p{

    line-height:1.9;

    margin-bottom:25px;

    color:#f0f0f0;

    font-size:18px;

}

/* IMAGE */

.ceo-image{

    flex:0 0 420px;
    margin-top: 20px;
    padding-right: 0%;

}

.ceo-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 25px 50px rgba(0,0,0,.35);

}

/* HIGHLIGHTS */

.ceo-highlights{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:45px;

}

.ceo-highlights div{

    text-align:center;

    background:rgba(255,255,255,.08);

    padding:25px;

    border-radius:12px;

}

.ceo-highlights h4{

    color:#ff4040;

    font-size:34px;

    margin-bottom:8px;

}

.ceo-highlights span{

    color:#fff;

    font-size:15px;

}
}
/*=================================
RESPONSIVE
==================================*/

@media(max-width:992px){

.ceo-container{
    flex-direction:column-reverse;
    text-align:center;
}

.ceo-content{
    width:100%;
}

.ceo-image{
    margin-bottom:30px;
}

.ceo-logos{
    justify-content:center;
}

}

@media(max-width:768px){

.ceo-content h2{
    font-size:34px;
}

.ceo-content h3{
    font-size:26px;
}

.ceo-image img{
    max-width:300px;
}

.logo-box img{
    width:70px;
    height:50px;
}

}
/*=========================================
RESPONSIVE
=========================================*/

@media (max-width:991px){

    .ceo-container{
        flex-direction: column-reverse;
        text-align: center;
    }

    .ceo-content{
        max-width: 100%;
    }

    .ceo-image{
        justify-content: center;
    }

    .ceo-image img{
        max-width: 320px;
    }

    .ceo-logos{
        justify-content: center;
        gap: 20px;
    }

}

@media (max-width:768px){

    .ceo-content h2{
        font-size: 36px;
    }

    .ceo-content h3{
        font-size: 24px;
    }

    .ceo-content p{
        font-size: 16px;
    }

    .logo-box img{
        max-width: 90px;
    }

}
/*====================================
CORE SERVICES
====================================*/

.services{

    background:#e7eaed;

   padding: 10px 0;
    margin-bottom: 0;

}

.sub-title{

    color:#ff2d2d;

    text-transform:uppercase;

    font-weight:700;

    letter-spacing:2px;

    font-size:15px;
    padding-top: 0% ;
    margin-top: 0;

}

.main-title{

    color:#181717;

    font: size 30px;px;

    font-weight:500;

    width:700px;

    margin:20px 0 20px;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:#415167;

    overflow:hidden;

    border-radius:8px;

    transition:.4s;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 40px rgba(0,0,0,.35);

}

.service-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.card-content{

    padding:20px;
    margin-bottom: 1;

}

.number{

    color:#ff2d2d;

    font-size:20px;

    font-weight:700;

}

.card-content h3{

    color:#fff;

    margin:10px 0;

    font-size:28px;

}

.card-content p{

    color:#bfc9d4;

    line-height:30px;

    margin-bottom:10px;

}

.card-content ul{

    list-style:none;

    padding:0;

}

.card-content ul li{

    color:#fff;

    margin-bottom:10px;

    position:relative;

    padding-left:28px;

}

.card-content ul li::before{

    content:"✔";

    position:absolute;

    left:0;

    color:#ff2d2d;

    font-weight:bold;

}

@media(max-width:992px){

.service-grid{

grid-template-columns:1fr;

}

.main-title{

width:100%;
font-size:40px;

}

}
/* View More Button */


/*=========================================
EQUIPMENT SECTION
=========================================*/

.equipment-section{
    padding:90px 0;
    background:#F7F1E6;
}

.equipment-section h2{
    text-align:center;
    font-size:48px;
    color:#0B2E59;
    font-weight:700;
    margin-bottom:15px;
}

.equipment-section p{
    text-align:center;
    color:#666;
    font-size:18px;
    margin-bottom:50px;
}

.equipment-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.equipment-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.10);
    transition:.4s;
}

.equipment-card:hover{
    transform:translateY(0px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.equipment-card img{
    width:100%;
    
    height:350px;
    object-fit:cover;
    object-position:top;
}

.equipment-card h3{
    color:#0B2E59;
    text-align:center;
    padding:10px 20px 10px;
    font-size:10px;
}

.equipment-card p{
    color:#666;
    font-size:16px;
    line-height:1.7;
    padding:0 25px 25px;
}

/*=========================================
EXPLORE EQUIPMENT BUTTON
=========================================*/

.view-more-btn{
    display:inline-block;
    padding:14px 35px;
    background:#E63946;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-size:17px;
    font-weight:600;
    transition:.3s;
    border:none;
    cursor:pointer;
}

.view-more-btn:hover{
    background:#0B2E59;
}

/*=========================================
SMOOTH SCROLL
=========================================*/

html{
    scroll-behavior:smooth;
}

#equipment-section{
    scroll-margin-top:90px;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

.equipment-grid{
    grid-template-columns:1fr;
}

.equipment-section h2{
    font-size:38px;
}

}

@media(max-width:768px){

.equipment-section{
    padding:70px 0;
}

.equipment-card img{
    height:220px;
}

.equipment-section h2{
    font-size:32px;
}

}
/*====================================
INDUSTRIES
====================================*/

.industries{

   background:#e7eaed;

    padding: 10px 0;

}

.sub-heading{

    color:#ff2d2d;

    font-size:15px;

    font-weight:700;

    letter-spacing:2px;
    margin-top: 0cm;
    padding-top: 0;

}

.industries h2{

    color:#181717;

    font-size: 50px;

    font-weight:500;

    width:700px;

    margin:20px 0 20px;
}

.industry-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:10px;
}

.industry-box{
    position:relative;
    height:240px;
    border-radius:15px;
    overflow:hidden;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.industry-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.industry-box:hover img{
    transform:scale(1.);
}

.industry-name{
    position:absolute;
    bottom:0;
    width:100%;
    padding:18px;
    text-align:center;
    color:#fff;
    font-size:22px;
    font-weight:600;
    background:linear-gradient(to top, rgba(0,0,0,.85), transparent);
}


/*=========================
OUR STRENGTHS
=========================*/

.capabilities-section{

    padding:10px 0;
    background:#fff;
    margin-top: 0%;

}

.capability-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:10px;

}

.capability-card{

    background:#0B2C66;
    color:#fff;
    border-radius:15px;
    padding:40px 30px;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin-bottom: 0%;

}

.capability-card:hover{

    transform:translateY(-10px);

}

.card-icon{

    width:70px;
    height:70px;
    background:#D91F26;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;

}

.capability-card h3{

    font-size:32px;
    margin-bottom:25px;

}

.capability-card ul{

    padding-left:20px;

}

.capability-card li{

    margin-bottom:18px;
    line-height:1.8;
}

/*==============================
CLIENTS
==============================*/

.clients-section{

    padding:50px 0;
    background:#ffffff;

}

.client-grid{

    display:grid;
    grid-template-columns:repeat(8,1fr);
    gap:25px;
    margin-top:50px;

}

.client-card{

    background:#fff;
    border:1px solid #e6e6e6;
    border-radius:12px;
    padding:25px;
    text-align:center;
    transition:.4s;
    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.client-card:hover{

    transform:translateY(-8px);
    box-shadow:0 12px 25px rgba(0,0,0,.15);

}

.client-card img{

    width:180px;
    height:90px;
    object-fit:contain;
    margin-bottom:20px;

}

.client-card h4{

    font-size:18px;
    color:#0B2C66;
    font-weight:600;
    margin:0;

}

/* Tablet */

@media(max-width:992px){

.client-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* Mobile */

@media(max-width:768px){

.client-grid{

grid-template-columns:1fr;

}

}

/*=========================
BLOGS
=========================*/
/*==========================
WHY ADISON
==========================*/

.why-adison{
    padding:90px 0;
    background:#F7F8FA;
    margin-top: 5px;
}

.why-adison .small-title{
    color:#E63946;
    font-size:16px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.why-adison h2{
    color:#0B2E59;
    font-size:40px;
    font-weight:700;
    line-height:1.2;
    margin:1px 0 20px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:#ffffff;
    border:1px solid #dfe6ee;
    border-radius:12px;
    padding:35px 30px;
    transition:0.35s;
}

.why-card:hover{
    transform:translateY(-8px);
    border-color:#E63946;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.why-icon{
    width:60px;
    height:60px;
    background:#FFECEC;
    color:#E63946;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
}

.why-card h3{
    color:#0B2E59;
    font-size:26px;
    margin-bottom:15px;
    font-weight:700;
}

.why-card p{
    color:#666;
    font-size:17px;
    line-height:1.8;
}

/* Responsive */

@media(max-width:1200px){

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.why-grid{
    grid-template-columns:1fr;
}

.why-adison h2{
    font-size:36px;
}

}
/*=========================================
CONTACT SECTION
=========================================*/

.contact-section{
    background:#F7F1E6;
    padding:50px 0;
}

.contact-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:flex-start;
}

/* Left Side */

.contact-info .section-title{
    color:#1D3557;
    margin-bottom:20px;
}

.contact-info p{
    color:#5F6B7A;
    font-size:17px;
    line-height:1.8;
}

/* Information Cards */

.info-card{
    display:flex;
    gap:20px;
    align-items:flex-start;
    background:#fff;
    padding:25px;
    margin-top:25px;
    border-radius:12px;
    border:1px solid #E4D8C4;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.info-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.info-icon{
    width:70px;
    height:70px;
    background:#0B2C66;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    flex-shrink:0;
}

.info-details h3{
    color:#0B2C66;
    margin-bottom:15px;
    font-size:24px;
}

.info-details p{
    margin:10px 0;
    color:#555;
    line-height:1.8;
    font-size:16px;
}

.info-details strong{
    color:#0B2C66;
}

.info-details i{
    color:#E63946;
    width:25px;
}

/* Bottom Strip */

.contact-bottom{
    margin-top:30px;
    background:#0B2C66;
    color:#fff;
    border-radius:10px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 25px;
    flex-wrap:wrap;
    gap:20px;
}

.contact-bottom div{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:16px;
    font-weight:600;
}

.contact-bottom i{
    color:#fff;
    font-size:20px;
}

/* Right Side Form */

.contact-form{
    background:#626e7d;
    border:1px solid #E4D8C4;
    border-radius:15px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    background:#EDF5FF;
    border:1px solid #D9CDB9;
    border-radius:8px;
    font-size:16px;
    color:#1D3557;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#E63946;
    box-shadow:0 0 8px rgba(230,57,70,.15);
}

.contact-form textarea{
    resize:vertical;
}

.contact-form button{
    width:100%;
    padding:16px;
    border:none;
    border-radius:8px;
    background:#E63946;
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#0B2C66;
}

/*=========================================
Responsive
=========================================*/

@media(max-width:992px){

.contact-content{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.row{
    grid-template-columns:1fr;
}

.info-card{
    flex-direction:column;
    text-align:center;
}

.info-icon{
    margin:auto;
}

.contact-bottom{
    flex-direction:column;
    text-align:center;
}

}
/*====================================
FOOTER
====================================*/

footer{
    background:#222;
    color:#fff;
    text-align:center;
    padding:25px 0;
}

footer p{
    font-size:15px;
}

/*====================================
BUTTON HOVER
====================================*/

button,
.btn{
    cursor:pointer;
}

.btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,.25);
}

/*====================================
SCROLLBAR
====================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#eee;
}

::-webkit-scrollbar-thumb{
    background:#d62d2d;
}

::-webkit-scrollbar-thumb:hover{
    background:#b71c1c;
}

/*====================================
ANIMATIONS
====================================*/

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.hero-content{

    animation:fadeUp 1.2s ease;

}

.product-card{

    animation:fadeUp .8s ease;

}

/*====================================
RESPONSIVE
====================================*/

@media(max-width:1200px){

.container{

    width:95%;

}

}

@media(max-width:992px){

.header .container{

    flex-direction:column;

}

.header-contact{

    margin-top:30px;
    flex-wrap:wrap;
    justify-content:center;

}

.product-grid{

    grid-template-columns:repeat(2,1fr);

}

.hero-content h1{

    font-size:45px;

}

}

@media(max-width:768px){

.top-bar .container{

    flex-direction:column;
    gap:15px;

}

.menu{

    flex-direction:column;

}

.menu li{

    width:100%;

}

.menu li a{

    text-align:center;

}

.hero{

    height:500px;

}

.hero-content{

    width:90%;

}

.hero-content h1{

    font-size:35px;

}

.hero-content h3{

    font-size:22px;

}

.hero-content p{

    font-size:16px;

}

.product-grid{

    grid-template-columns:1fr;

}

.about p,
.applications p{

    width:100%;

}

}

@media(max-width:576px){

.logo img{

    width:200px;

}

.contact-box{

    flex-direction:column;
    text-align:center;

}

.section-title h2{

    font-size:30px;

}

}
html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 90px;
}
.solutions{
    padding-bottom:1px !important;
    margin-bottom:0 !important;
}

.industries{
    padding-top:1px !important;
    margin-top:0 !important;
}