﻿/* General styles (keep these as they are) */
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url('images/carousel/Img1.jpg');
    background-position: center;
    background-size: cover;
    position: relative;
    transition: background-image 1s ease-in-out;
}

nav {
    display: flex;
    padding: 2% 3%;
    justify-content: space-between;
    align-items: center;
}

    nav img {
        width: 60px;
    }

.nav-links {
    flex: 1;
    text-align: right;
}

    .nav-links ul li {
        display: inline-block;
        list-style: none;
        padding: 8px 3px;
        position: relative;
    }

        .nav-links ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 13px;
        }

        .nav-links ul li::after {
            content: "";
            width: 0%;
            height: 2px;
            background: #f44336;
            display: block;
            margin: auto;
            transition: 0.5s;
        }

        .nav-links ul li:hover::after {
            width: 100%;
        }


/* These styles should primarily affect desktop hover behavior */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown {
    position: relative;
    display: inline-block;
}

    .dropdown > a {
        display: block;
        padding: 10px 15px;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
    }

        .dropdown > a i {
            margin-left: 5px;
            color: #fff;
        }

.dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
    min-width: 220px;
    flex-direction: column;
    padding: 0;
    border: 1px solid #ccc;
    background-color: transparent;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.dropdown-content li a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
}

    .dropdown-content li a:hover {
        color: #ffcc00;
    }

/* Text box and hero button styles (keep these as they are) */
.text-box {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

    .text-box h1 {
        font-size: 62px;
    }

    .text-box p {
        font-size: 12px;
        margin: 10px 0 40px;
    }

.hero-btn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 34px;
    color: #fff;
    font-size: 12px;
    background: transparent;
    border: 1px solid #fff;
    position: relative;
    cursor: pointer;
}

    .hero-btn:hover {
        border: 1px solid #f44336;
        background: #f44336;
        transition: 1s;
    }

nav .fa {
    display: none;
}

/* Mobile styles - view */
@media(max-width: 768px) {
    .text-box h1 {
        font-size: 30px;
    }

    .nav-links ul li {
        display: block;
        padding: 5px 0;
        text-align: left;
        background-color: #f44336;
    }

    /* Override desktop dropdown specific styles for mobile */
    .dropdown {
        display: block;
        width: 100%;
        position: static;
        padding: 0;
        background-color: transparent;
    }

        .dropdown > a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 10px;
            width: auto;
            font-size: 13px;
            color: #fff;
            text-decoration: none;
        }

            .dropdown > a .fa-caret-down {
                margin-left: auto;
                transition: transform 0.3s ease;
                font-size: 16px;
            }

        .dropdown.open > a .fa-caret-down {
            transform: rotate(180deg);
        }

    .dropdown-content {
        position: static !important;
        display: none;
        border: none;
        min-width: unset;
        width: 100%;
        background-color: #c93b30;
        padding: 0;
    }

    .dropdown.open .dropdown-content {
        display: block;
    }

    .dropdown-content li {
        text-align: left;
        padding: 0;
    }

        .dropdown-content li a {
            padding: 5px 20px;
            font-size: 12px;
            color: #fff;
            background-color: transparent;
        }

            .dropdown-content li a:hover {
                color: #ffcc00;
            }

    /* General mobile nav-links styles */
    .nav-links {
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
        padding-top: 50px;
    }

    nav .fa {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
        padding: 30px;
    }
}


/*----Highlight------*/
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    background-color: #f8f9fa;
  
   background-image: url('images/bg1.jpg');

    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.features-section {
    padding: 100px 5%;
    text-align: center;
    background-color: #fff;
    max-width: 1200px;
    margin: 50px auto;
    background-image: url('images/bg1.jpg');
    background-size: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.features-header {
    margin-bottom: 60px;
}

    .features-header h2 {
        font-size: 2.5em;
        color: #333;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .features-header p {
        font-size: 1.1em;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

.features-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.feature-item {
    flex-basis: 22%;
    min-width: 220px;
    padding: 25px 15px;
    background-color: #fff;
    background-image: url('images/download.jpg');
    background-size: cover;
    border-radius: 8px;
    text-align: center;
}


.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #e0f2f7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
}

  

.feature-item h3 {
    font-size: 1.25em;
    color: darkorange;
    margin-bottom: 10px;
    font-weight: 500;
}

.feature-item p {
    font-size: 0.95em;
    color: yellow;
    line-height: 1.5;
    max-width: 200px;
    margin: 0 auto;
}

.learn-more {
    display: inline-block;
    margin-top: 20px;
    font-size: 1.05em;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

    .learn-more:hover {
        color: #0056b3;
    }

    .learn-more i {
        margin-left: 8px;
        font-size: 0.9em;
        transition: transform 0.3s ease;
    }

    .learn-more:hover i {
        transform: translateX(5px);
    }


.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: var(--animation-delay, 0s);
}

    .animate-fade-up.is-visible {
        opacity: 1;
        transform: translateY(0);
    }



@media (max-width: 992px) {
    .feature-item {
        flex-basis: 45%;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 80px 3%;
        margin: 30px auto;
    }

    .features-header h2 {
        font-size: 2em;
    }

    .features-header p {
        font-size: 1em;
    }

    .feature-item {
        flex-basis: 80%;
        min-width: unset;
    }

    .features-grid {
        gap: 20px;
    }
}
   
@media (max-width: 480px) {
    .features-section {
        padding: 50px 2%;
    }

    .features-header h2 {
        font-size: 1.8em;
    }

    .features-header p {
        font-size: 0.9em;
    }

    .feature-item p {
        font-size: 0.9em;
    }
}

.icon-color-orange {
    color: #ff9800;
}

.icon-color-green {
    color: #4CAF50;
}

.icon-color-yellow {
    color: #FFC107;
}

.icon-color-blue-light {
    color: #2196F3;
}



/*---Counter----*/

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fff;
}

/* Counter Section Styling */
.counter-section-wrapper {
    
    padding: 80px 0;
    color: black;
}

.dt-sc-counter-icon-holder {
    margin-bottom: 30px;
}

.icon-wrapper {
    font-size: 3em;
    margin-bottom: 15px;
    color: #f39c12;
}

.dt-sc-counter-number {
    font-size: 4em;
    font-weight: bold;
    margin-bottom: 10px;
    color: black;
    display: block;
}

.dt-sc-counter-icon-holder p {
    font-size: 1.5em;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 768px) {
    .dt-sc-counter-number {
        font-size: 3em;
    }

    .dt-sc-counter-icon-holder p {
        font-size: 1.2em;
    }
}

/*--- Quality--*/

.Quality {
    width: 80%;
    margin: auto;
    text-align: center;
    background-color: chocolate
    background-color size:cover;
}
h1 {
    font-size: 40px;
    font-weight: 600;
}

p {
    font-size: 14px;
    font-weight: 300;
    color: #777;
    line-height: 22px;
    padding: 10px;
}

.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.quality-col {
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
}
h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.quality-col:hover {
    box-shadow: 0 0 20px rgba(244,67,54,0.5);

}
    
@media(max-width: 700px){
    .row {
        flex-direction: column;

    }
}


/*---logoslider-----*/

.Quality {
    position: relative;
    padding-top: 120px;
}

.Quality h2 {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
    font-size: 50px;
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30vh;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.slider {
    height: 110px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 80%;
}

.slide-track {
    display: flex;
    width: calc(250px * 20);
    animation: scroll 30s linear infinite;
}

.slide {
    height: 100px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .slide img {
        width: 80%;
        height: 100px;
        object-fit: contain;
        border-radius: 10px;
        border: 2px solid #bbbbbb;
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 10));
    }
}




/*-- facilities ----*/
.facilities {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.facilities-col {
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    padding: 20px 12px;
    box-sizing: border-box;
}
.facilities-col img{
    width: 100%;
    border-radius: 10px;
}
    .facilities-col p{
        padding: 1px;
    }

    .facilities-col h3 {
        text-align: center;
        font-weight: 600;
        margin-top: 16px;
        margin-bottom: 15px;
        text-align: left;
    }
.carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

.carousel-container {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding: 10px;
    scroll-snap-type: x mandatory;
}

.facilities-col {
    flex: 0 0 calc(100% / 3 - 20px);
    scroll-snap-align: start;
}
.carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}
.carousel-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.scroll-btn {
    position: absolute;
    top: 45%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
}

    .scroll-btn.left {
        left: 0;
    }

    .scroll-btn.right {
        right: 0;
    }

/*--testimonials--*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f8f8;
}

.our-team {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 50px;
}

    .our-team h1 {
        font-size: 36px;
        margin-bottom: 50px;
        color: #333;
        position: relative;
        display: inline-block;
    }

        .our-team h1::after {
            content: '';
            width: 60px;
            height: 3px;
            background: #007bff;
            display: block;
            margin: 10px auto 0;
        }


.team-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.team-col {
    flex-basis: 22%;
    min-width: 200px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

    .team-col:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .team-col img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        display: block;
        vertical-align: top;
    }

.team-member-info {
    padding: 15px 10px;
    background-color: #e0f2f7;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

    .team-member-info h3 {
        margin: 0;
        font-size: 1.2em;
        color: #333;
    }

    .team-member-info span {
        display: block;
        font-size: 0.9em;
        color: #555;
        margin-top: 5px;
    }

/*--footer--*/
.footer {
    position: relative;
    background-image: url('/images/footer-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    padding: 60px 30px 30px 30px;
    z-index: 1;
}

    .footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
        z-index: -1;
    }

.footer {
    background: #fff;
    color: #000;
    font-family: Arial, sans-serif;
    padding: 40px 60px 20px;
    border-top: 1px solid #ddd;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.brand-name {
    font-size: 22px;
    font-weight: bold;
}

.slogan {
    color: #f44336;
    font-size: 14px;
    margin-bottom: 10px;
}

.about-us {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-section ul li {
        font-size: 14px;
        margin-bottom: 6px;
        color: #333;
    }

.contact p {
    font-size: 14px;
    margin: 5px 0;
}

.subscribe-form {
    display: flex;
    margin-top: 20px;
}

    .subscribe-form input {
        flex: 1;
        padding: 8px;
        width: 2px;
        border: 1px solid #ccc;
        border-right: none;
        outline: none;
    }

    .subscribe-form button {
        background: #f44336;
        color: #fff;
        border: none;
        padding: 0 3px;
        width:100px;
        font-size: 18px;
        cursor: pointer;
    }

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

    .social-icons a {
        background: #eee;
        color: #333;
        font-size: 14px;
        width: 30px;
        height: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        text-decoration: none;
        transition: background 0.3s, color 0.3s;
    }

        .social-icons a:hover {
            background: #f44336;
            color: #fff;
        }

.follow-label {
    margin-top: 10px;
    font-weight: bold;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

    .footer-links a {
        color: #555;
        text-decoration: none;
    }

        .footer-links a:hover {
            text-decoration: underline;
        }


/*---About us--*/


body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    background-color: #f8f9fa;
    background-image: url('images/Modern futuristic background.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}


.sub-header {
    height: 70vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/Aboutus/about.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}

.sub-header h1 {
    margin-top: 100px;
}

/* About Us Section */
.about-us {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
    display: flex;
    
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.about-col {
    width: 100%;
    max-width: 800px;
    padding: 30px;
    box-sizing: border-box;
    margin-left: 5%;
}

    .about-col h1 {
        padding-top: 10px;
        font-size: 3em;
        font-weight: 700;
        color: #333;
        margin-bottom: 20px;
        line-height: 1.2;
        text-align: left;
    }

    .about-col p {
        padding: 15px 0 25px;
        font-size: 1.1em;
        color: #555;
        line-height: 1.6;
        text-align: left;
        margin-bottom: 20px;
    }

.red-btn {
    background-color: #f44336;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 12px 30px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

    .red-btn:hover {
        background-color: #d32f2f;
    }

@media (max-width: 768px) {
    .about-us {
        flex-direction: column;
        padding: 40px 3%;
        align-items: center;
    }

    .about-col {
        width: 100%;
        margin-left: 0;
        padding: 20px;
        text-align: center;
        max-width: 90%;
    }

        .about-col h1,
        .about-col p {
            text-align: center;
        }

        .about-col h1 {
            font-size: 2.5em;
        }

        .about-col p {
            font-size: 1em;
        }
}

@media (max-width: 480px) {
    .about-col h1 {
        font-size: 2em;
    }

    .about-col p {
        font-size: 0.9em;
    }
}

/*-------certification------*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    background-color: #f9f9f9;
}

.excellence-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 10px;
    min-height: 60vh;
    background-color: #ffffff;
    gap: 50px;
}

.excellence-content {
    flex: 1;
    max-width: 500px;
    padding-right: 20px;
    box-sizing: border-box;
    text-align: left;
}

    .excellence-content h1 {
        font-size: 3em;
        color: #333;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .excellence-content p {
        font-size: 1.1em;
        color: #555;
        line-height: 1.6;
    }

.excellence-image-container {
    flex: 1;
    max-width: 500px;
    text-align: center;
}

    .excellence-image-container img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
    }

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.excellence-content.animate-on-scroll {
    transform: translateY(50px);
}

.excellence-image-container.animate-on-scroll {
    transform: translateX(50px);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

@media (max-width: 600px) {
    /* For image sections (certificate, etc.) */
    .excellence-section {
        padding: 20px 15px;
        flex-direction: column;
        gap: 20px;
    }

    .excellence-image-container {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }

        .excellence-image-container img {
            width: 100%;
            height: auto;
            object-fit: contain;
            border-radius: 8px;
        }

    /* For the introduction section */
    .transparent-section {
        padding: 20px 10px;
        text-align: center;
    }

    .transparent-content {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 10px;
        box-sizing: border-box;
    }

        .transparent-content h2 {
            font-size: 1.4em;
            margin-bottom: 10px;
        }

        .transparent-content p {
            font-size: 1em;
            line-height: 1.5;
        }
}

/*----contact us----*/


.location {
    width: 80%;
    margin: auto;
    padding-top: 80px 0;
}
.location iframe {
    width: 100%;
}

.contact-us {
    width: 80%;
    margin: auto;
}

.contact-col {
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa {
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
}
.contact-col div p{
    padding: 0;

}
.contact-col div h5 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

.contact-col input, .contact-col textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.contact-input:focus {
    border: 2px solid #ff994f;
}

.about-us-footer {
    background-color: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    font-size: 1em;
    color: #555;
    line-height: 1.5;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 10px 0;
}

.footer-section {
    background-color: transparent;
}

@media (max-width: 768px) {
    .about-us-footer {
        font-size: 0.9em;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .about-us-footer {
        font-size: 0.85em;
    }
}