/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* --- Navbar Start --- */
.navbar {
    background: transparent;
    padding: 20px 5%;      
    border-bottom: none;   
    position: absolute;    
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 70px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff; 
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

#menu-toggle, .hamburger {
    display: none;
}



.menu-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
}


@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 3000;
    }

    .hamburger .bar {
        width: 25px;
        height: 3px;
        background: #ffffff;
        transition: 0.3s;
    }
    .menu-overlay {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95); 
        backdrop-filter: blur(10px);         
        transition: 0.4s ease-in-out;
        z-index: 2500;
    }

    #menu-toggle:checked ~ .hamburger .bar {
    background: #004a99; 
    }

     .navbar {
        background: transparent;
        border-bottom: none;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .nav-links a {
        color: black;
    }


    #menu-toggle:checked ~ .menu-overlay {
        right: 0;
    }

    #menu-toggle:checked ~ .hamburger .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    #menu-toggle:checked ~ .hamburger .bar:nth-child(2) {
        opacity: 0;
    }
    #menu-toggle:checked ~ .hamburger .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}



/* Homebanner start */

.hero {
    position: relative;
    height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end; 
    padding: 0 10% 100px 10%; 
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    animation: fadeRotation 10s infinite;
}

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 23, 64, 0.9) 0%, rgba(1, 23, 64, 0.2) 50%, transparent 100%);
}

.slide1 { background-image: url('../img/Banner3.png'); }
.slide2 { 
    background-image: url('../img/Banner3.png'); 
    animation-delay: 5s; 
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 { 
    font-size: 3rem; 
    font-weight: normal;
    line-height: 1.1;
    margin-bottom: 20px;
}




@keyframes fadeRotation {
    0% { opacity: 0; transform: scale(1.1); }
    10%, 50% { opacity: 1; transform: scale(1); }
    60%, 100% { opacity: 0; transform: scale(1); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
    .hero {
        padding: 0 5% 80px 5%;
    }
    .hero-content h1 { font-size: 3.2rem; }
}

@media (max-width: 600px) {
    .hero {
        padding: 0 10% 60px 10%; 
        height: 70vh;
    }
    .hero-content h1 { font-size: 2.2rem; }
}

/* Homebanner end */

/* About start */

.about-split {
    padding: 80px 10%;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

.split-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.split-image-box {
    position: relative;
}

.reveal-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px; 
}

.experience-tag {
    position: absolute;
    bottom: 20px;
    right: -15px;
    background: #ff4d4d; 
    color: #ffffff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
}

.experience-tag .years {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.experience-tag .label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.sub-title {
    color: #ff4d4d; 
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.main-title {
    font-size: 2.0rem;
    color: #011740;
    margin: 0 0 25px 0;
    font-weight: normal;
    line-height: 1.2;
}



.main-title span {
    color: #ff4d4d; 
     font-size: 2.5rem;
}

.narrative p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.ceo-highlight {
    border-left: 4px solid #ff4d4d; 
    padding: 10px 0 10px 25px;
    margin: 35px 0;
    background-color: #f9f9f9; 
}

.short-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #011740;
    margin: 0 0 12px 0;
    font-family: 'Georgia', serif;
    line-height: 1.6;
}

.ceo-meta strong {
    display: block;
    font-size: 1rem;
    color: #011740;
    font-weight: 700;
}

.ceo-meta span {
    font-size: 0.85rem;
    color: #888;
}

.cta-link {
    text-decoration: none;
    color: #ff4d4d;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    transition: 0.3s ease;
}

.cta-link:hover {
    color: #011740;
    transform: translateX(8px);
}


@media (max-width: 1024px) {
    .about-split {
        padding: 60px 5%; 
    }
}

@media (max-width: 992px) {
    .split-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .reveal-img { 
        height: 380px; 
    }
    
    .main-title { 
        font-size: 2.2rem; 
    }

    .experience-tag {
        right: 20px; 
    }
}

@media (max-width: 600px) {
    .about-split {
        padding: 50px 10%;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
}
/* About end */

/* Image section start */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}


.reliability-banner {
  
    background-image: url('../img/bg.jpeg'); 
    background-attachment: fixed; 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}


.banner-tagline {
    color: #ffffff;
    font-size: 3rem; 
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: none;
}


@media (max-width: 1024px) {
    .reliability-banner {
        background-attachment: scroll; 
        height: 300px;
    }
    
    .banner-tagline {
        font-size: 2rem;
    }
}

.companies-section {
    padding: 80px 10%;
    text-align: left;
}

.companies-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}


.companies-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background-color: #333;
    margin-top: 15px;
}

/* Image section end */

/* Our comapnies start */

.companies-container {
    padding: 80px 10%;
    background-color: #ffffff;
    box-sizing: border-box;
}

.header-area {
    margin-bottom: 50px;
    text-align: left; 
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #011740;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.heading-line {
    width: 60px; 
    height: 3px;
    background-color: #ff4d4d;
}


.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}

.company-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    border: 1px solid #f0f0f0;
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #ff4d4d; 
}

.company-card h3 {
    color: #011740; 
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.company-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.learn-more {
    color: #ff4d4d; 
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.learn-more:hover {
    gap: 12px;
}

@media (max-width: 1024px) {
    .companies-container {
        padding: 60px 5%; 
    }
}

@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .companies-container {
        padding: 50px 10%; 
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .main-heading {
        font-size: 2rem;
    }
}

/* Our companies end */




/* Achievement start */


.achievements-section {
    padding: 80px 10%;
    background-color: #fff;
    overflow: hidden; 
}


.slider-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 40px;
}


.achievement-container {
    overflow: hidden; 
    width: 100%;
}


.achievement-grid {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}


.achievement-item {

    flex: 0 0 calc(25% - 15px); 
    min-width: calc(25% - 15px);
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.achievement-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.achievement-item:hover img {
    transform: scale(1.05);
}


.nav-btn {
    background: #333;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    z-index: 10;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: #ff4d4d;
}


.prev {
    left: -60px; 
}

.next {
    right: -60px;
}


@media (max-width: 1024px) {
    .achievement-item {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
    .prev { left: -20px; }
    .next { right: -20px; }
}


@media (max-width: 600px) {
    .achievement-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
    .slider-wrapper {
        padding: 0;
    }
    .prev { left: 5px; }
    .next { right: 5px; }
}

/* Achievement ending */

/* Feedback start */

.feedback-section {
    padding: 80px 10%;
    background-color: #f4f7f9;
    overflow: hidden;
}

.header-area {
    text-align: left;
}

.heading-line {
    width: 80px;
    height: 3px;
    background-color: #333;
    margin: 15px 0 0 0;
}

.feedback-wrapper {
    margin-top: 50px;
    width: 100%;
    overflow: hidden;
}

.feedback-track {
    display: flex;
    width: max-content; 
    animation: infiniteScroll 30s linear infinite;
}

.feedback-card {
    width: 350px;
    background: #fff;
    margin-right: 30px;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid #002366;
    flex-shrink: 0;
    text-align: center;
}

.star-rating {
    color: #ffcc00;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

@keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { 
        transform: translateX(calc(-380px * 6)); 
    }
}

.feedback-wrapper:hover .feedback-track {
    animation-play-state: paused;
}


/* Feedback end */

/* Get Quote start */

.cta-banner {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

.cta-container {
    background-color: #e82c33; 
    padding: 30px 10%; 
    border-radius: 40px 40px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center; 
    color: #ffffff;
    box-sizing: border-box;
    width: 100%;
    gap: 40px;
}

.cta-text {
    flex: 1.2;
    text-align: left;
}

.cta-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem; 
    font-weight: 700;
    margin-bottom: 5px; 
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-subtitle .line {
    width: 30px;
    height: 2px;
    background-color: #ffffff;
}

.cta-text h2 {
    font-size: 1.8rem; 
    margin-bottom: 8px;
    font-weight: 800;
    line-height: 1.1;
    max-width: 600px;
}

.cta-text p {
    font-size: 0.95rem;
    opacity: 0.9;
    max-width: 550px;
    line-height: 1.4;
    margin: 0; 
}


.cta-action {
    flex: 1;
    max-width: 380px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 10px; 
}

.cta-form input {
    width: 100%;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    box-sizing: border-box;
}

.submit-btn {
    background-color: #ffffff;
    color: #e82c33;
    padding: 12px; 
    border-radius: 6px;
    border: none;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.submit-btn:hover {
    background-color: #222;
    color: #ffffff;
}

@media (max-width: 992px) {
    .cta-container {
        flex-direction: column;
        padding: 40px 5%;
        text-align: center;
    }

    .cta-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-subtitle {
        justify-content: center;
    }

    .cta-action {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .cta-container {
        padding: 30px 20px;
        border-radius: 25px 25px 0 0;
    }
    
    .cta-text h2 {
        font-size: 1.5rem;
    }
}
/* Get Quote end */

/* Footer start */


.main-footer {
    background-color: #011740; 
    color: #ffffff;
    padding: 50px 10%; 
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 40px;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-line {
    width: 50px;
    height: 3px;
    background-color: #ff4d4d; 
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #d1d9e6;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff4d4d;
    padding-left: 8px; 
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info p, 
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #d1d9e6;
    font-size: 0.92rem;
    line-height: 1.6;
}

.contact-info i {
    color: #ff4d4d; 
    width: 20px; 
    text-align: center;
    font-size: 1.1rem;
    margin-top: 4px; 
}

.phone-numbers {
    display: flex;
    flex-direction: column;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.4s ease;
}

.social-icons a:hover {
    background-color: #ff4d4d;
    transform: translateY(-5px); 
}


.footer-bottom {

    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #a0aec0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    flex-wrap: wrap; 
    gap: 15px;
}

.developer-credit a {
    color: #a0aec0; 
    text-decoration: none;
    font-weight: 600;
}


@media (max-width: 1024px) {
    .main-footer {
        padding: 60px 5%; 
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr); 
        gap: 50px 30px;
    }
}


@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr; 
        text-align: left;
    }

    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-line {
        margin-bottom: 20px;
    }
}
/* Footer start */