* {
    box-sizing: border-box;
}


/* Global Heading Style */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'IBM Plex Sans', sans-serif;
    color: rgb(14, 22, 40);
    font-weight: 700;
}

p,
a {
    font-family: 'IBM Plex Sans', sans-serif;
}



li {
    font-family: 'IBM Plex Sans', sans-serif;

}


body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

/* Header Wrapper  */
/* Sticky Full Width Wrapper */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    transition: 0.3s ease;
    z-index: 999;
    margin-bottom: 23px;
}
.close-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    text-align: right;
    padding: 15px 20px;
}

/* Mobile Menu */
@media (max-width: 991px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        transition: 0.3s ease;
        z-index: 9999;
        padding-top: 10px;
    }

    .nav-links.active {
        right: 0;
    }

    .close-menu {
        display: block; /* Show only in mobile */
    }
}



/* Inner Container */
.header {
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: black;
}


.logo img {
    height: 60px;
    width: 203px;
}

/* Desktop Menu */
.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 500;
}

.nav-links a:hover {
    background-color: #ddd;
}


/* Hamburger */
.hamburger {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* Overlay */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {

    .hamburger {
        display: block;
        padding-right:20px;
    }

    /* Slide Menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -260px;
        height: 100%;
        width: 250px;
        background: white;
        flex-direction: column;
        padding-top: 80px;
        gap: 0;
        transition: 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links a {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .nav-links.show {
        right: 0;
    }

    .overlay.show {
        opacity: 1;
        visibility: visible;
    }
}


/*Hero*/

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-image img {
    height: auto;
    padding-top: 89px;
    object-fit: cover;
}



.hero-content p {

    font-size: 16px;
    line-height: 1.7;
    max-width: 520px;
}

.hero-content a {
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    color: #0f172a;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #0f172a;
}

/* Header Buttons Wrapper */
.header-buttons {
    display: flex;
    gap: 15px;
}

/* Primary Button */
.btn-primary-custom {
    background: #7aa93c;
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: #6a9633;
}

/* Secondary Button */
.btn-secondary-custom {
    background: transparent;
    color: #000;
    padding: 8px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #000;
    transition: 0.3s ease;
    display: inline-block;
}

.btn-secondary-custom:hover {
    background: #000;
    color: #fff;
}


/*end hero*/




/* Solve section*/
.solve-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.solve-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.learn-link {
    color: #7aa93c;
    font-weight: 600;
    text-decoration: none;
}

.learn-link:hover {
    text-decoration: underline;
}

.solve-card h2 {
    font-size: 22px;
    color: #0f172a;
}


.solve-card p {
    color: #475569;
    line-height: 1.7;
}

/* End Solve section*/


/*Industry*/
.industry-list li {
    padding: 18px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 18px;
    color: #0f172a;
    cursor: pointer;
    transition: 0.3s ease;
}

.industry-list li:hover {
    color: #7aa93c;
}

.industry-list .active-item {
    color: #7aa93c;
}


.industry-section h2 {
    font-size: 48px;
    color: #0f172a;
}


.industry-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
}


/* Modal Content */
.manufacturing-modal-content {
    border-radius: 20px;
}

/* Title */
.manufacturing-title {
    font-size: 30px;
    color: #0f172a;
}

/* Paragraph */
.manufacturing-text {
    color: #475569;
    line-height: 1.8;
}

/* Button */
.manufacturing-btn {
    background: #7aa93c;
    border-radius: 8px;
    color: #ffffff;
    border: none;
}

.manufacturing-btn:hover {
    background: #6a9633;
    color: #ffffff;
}

/* End Industry */




/* Modal Container */
.custom-modal .modal-content {
    border-radius: 20px;
    padding: 5px;
    border: none;
}

.modal-content {
    width: 90%;
    margin: 0 auto;
}

.modal-content1 {
    width: 75%;
    margin: 0 auto;
}


/* Close Button */
.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

/* Modal Image */
.modal-image {
    width: 100%;
    height: auto;
    /* reduce height */
    object-fit: cover;
    /* crops nicely */
    border-radius: 16px;
    margin-bottom: 25px;
}

/* Modal Title */
.modal-title {
    font-size: 30px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

/* Modal Text */
.modal-text {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Button */
.modal-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background-color: #7aa93c;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.modal-btn:hover {
    background-color: #6a9433;
    color: #ffffff;
}


/*Leadership*/
@media (max-width: 767px) {
  .leadership-section .col-md-4,
  .leadership-section .col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: auto;
}

.leader-card {
    background: #ffffff;
    padding: 10px;                 /* reduced from 13px */
    border-radius: 14px;           /* reduced */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #F1F1F1;
     max-width: 320px;   /* control card width */
    margin: auto;       /* center inside column */
}

/* Reduce Image Size */
.leader-card img {
    width: 100%;
    height: 265px;                 /* control height */
    object-fit: cover;             /* keeps image proper */
    border-radius: 12px;
    margin-bottom: 14px;           /* reduced */
}

    .col-lg-4 {
        width:27%;
}
.leader-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
}

.leader-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
}

.leader-card a {
    display: inline-block;
    margin-top: 10px;
    color: #7aa93c;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}


.leader-card:hover {
    transform: translateY(-12px) scale(1.03);
    /* little zoom */
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
    border: none;
}


/* Modal Box */
.giri-modal-content {
    border-radius: 25px;
    padding: 20px !important;
}

/* Profile Image */
.giri-profile-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 25px;
}

/* Name */
.giri-name {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

/* Subtitle */
.giri-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 20px;
}

/* Description */
.giri-description {
    color: #475569;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Email */
.giri-email {
    color: #7aa93c;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
}

.giri-email:hover {
    text-decoration: underline;
}


/*End Leadership */


/*who we are */

.who-we-are h2 {
    font-size: 48px
}





.trusted-section {
    background: #F8FAFC;
    padding: 60px 0;
    overflow: hidden;
}

.trusted-title {
    font-size: 28px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 40px;
}

/* Slider */
.logo-slider {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scroll 25s linear infinite;
}

/* Pause on hover */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

.logo-track img {
    height: 43px;
    object-fit: contain;
    opacity: 0.8;
    transition: 0.3s;
}

.logo-track img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}





.contact-map-section {
    background: #F7F3ED;
    padding: 80px 0;
}

.map-wrapper {
    position: relative;
}

.world-map {
    width: 100%;
    opacity: 0.6;
}

/* PIN */
.map-pin {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #7aa93c;
    border-radius: 50%;
    cursor: pointer;
    animation: pulse 2s infinite;
}

/* Glow effect */
.map-pin::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(122, 169, 60, 0.3);
    border-radius: 50%;
    top: -7px;
    left: -7px;
    animation: ripple 2s infinite;
}



/* ========================= */
/* Location Positioning Only */
/* ========================= */

/* USA – New York */
.pin-usa {
    top: 28%;
    left: 22%;
}

/* Germany – Eschborn */
.pin-germany {
    top: 32%;
    left: 52%;
}

/* India – Delhi */
.pin-delhi {
    top: 30%;
    left: 69%;
}

/* India – Mumbai */
.pin-mumbai {
    top: 40%;
    left: 67%;
}

/* Tooltip */
.tooltip-box {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f172a;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: 0.3s ease;
}

/* Show on hover */
.map-pin:hover .tooltip-box {
    opacity: 1;
    bottom: 38px;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.tooltip-box::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #0f172a transparent transparent transparent;
}

.office-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.office-small-title {
    font-size: 18px;

    margin-bottom: 25px;
}

.office-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.office-grid h4 {
    font-size: 22px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 20px;
}

.office-location {
    margin-bottom: 20px;
}

.office-location strong {
    display: block;
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 5px;
}

.office-location p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.office-card hr {
    margin: 30px 0;
    opacity: 0.2;
}

.contact-info h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0f172a;
}

.contact-info p {
    margin-bottom: 8px;
    color: #475569;
}

.contact-info a {
    color: #7aa93c;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}


.contact-main-title {
    padding-bottom: 12px;
}




/*Footer*/

.footer {
    background: #0F172A;
    padding: 20px 0px 20px 0px !important;
}

.footer-title {
    display: flex;
    justify-content: center;
    font-size: 13px;
    color: #fff;
}


@media(max-width:768px) {
    .office-grid {
        display: block;
    }

    .office-card {
        margin: 37px 0px 0px 0px;
    }

    .hero-content h1 {
        font-size: 27px ;
    }

    .who-we-are h2 {
        font-size: 27px ;
    }

    .industry-section h2 {
        font-size: 27px ;
    }

    .section-title {
        font-size: 27px ;
    }
    
    .modal-content{
        width:100%;
    }
    .logo img {
        padding-left:15px;
}
.pin-delhi {
    top:21%;
}
.col-lg-4 {
    width:100%;
}

.giri-modal-content {
    padding:0px !important;
}


}



@media(max-width:991px){
    .col-lg-4{
        width:45%;
    }
}








