.hamburger span {
    height: 3px;
    width: 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: black;
    margin-right: 20px;

}

/* Add class for scrolled state */
.main-header.scrolled {
    width: 100%;
    top: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 30px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
    padding: 5px 10px;
}

.nav-menu ul li.active a {
    color: #ffb100;
}


.nav-menu ul li a:hover::after {
    transform: scaleX(1);
}


.section1 {
    background: url('../images/sectyion-bg.png') no-repeat center center / cover;
    border-radius: 60px;
    padding: 60px;
    margin: 40px auto;
    position: relative;
    max-width: 95%;
    overflow: hidden;
    box-sizing: border-box;
    opacity: 0;
    transform: perspective(1000px) translateY(30px) rotateX(5deg);
    animation: section1Reveal 2.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}


@keyframes section1Reveal {
    0% {
        opacity: 0;
        transform: perspective(1000px) translateY(30px) rotateX(5deg);
    }

    100% {
        opacity: 1;
        transform: perspective(1000px) translateY(0) rotateX(0);
    }
}

/* .logo img {
    height: 100px;
    opacity: 0;
    transform: scale(0.8) rotate(-5deg);
    animation: logoReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.3s;
} */

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

.quote-button .btn {
    background-color: #ffb100;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 400;
    text-decoration: none;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}



.quote-button .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.quote-button .btn:hover::after {
    transform: translateX(100%) skewX(-15deg);
}

/* BANNER */
.promo-banner {
    background-color: white;
    color: #ffb100;
    display: flex;
    align-items: center;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: fit-content;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: bannerReveal 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.5s;
    margin-top: 10px;
}

.sun-rotating {
    height: 50px;
    width: auto;
}

@keyframes bannerReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* CONTENT */
.section1-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* flex-wrap: wrap; */
    gap: 40px;
    /* margin-top: 20px; */
    width: 100%;
}

/* HERO */
.hero-text {
    flex: 1 1 55%;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 30px;
    border: 5px solid #ffb100;
    padding: 40px;
    color: white;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: perspective(1000px) translateX(-30px) rotateY(5deg);
    animation: heroReveal 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.7s;
}

@keyframes heroReveal {
    0% {
        opacity: 0;
        transform: perspective(1000px) translateX(-30px) rotateY(5deg);
    }

    100% {
        opacity: 1;
        transform: perspective(1000px) translateX(0) rotateY(0);
    }
}

.hero-text h1 {
    font-size: 2.8em;
    line-height: 1.3;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(10px);
    animation: textReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 1s;
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 span {
    color: #2196f3;
    display: inline-block;
    animation: colorPulse 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    position: relative;
}

.hero-text h1 span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;

    background-size: 200% 100%;
    animation: gradientFlow 3s linear infinite;
}

@keyframes colorPulse {
    0% {
        color: #2196f3;
        transform: scale(1);
    }

    50% {
        color: #64b5f6;
        transform: scale(1.05);
    }

    100% {
        color: #2196f3;
        transform: scale(1);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.hero-text p {
    font-size: 1.2em;
    color: #ffb100;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(10px);
    animation: textReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 1.2s;
}

.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(10px);
    animation: textReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 1.4s;
}

.btn-primary {
    background-color: #ffb100;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover::before {
    transform: translateX(100%) skewX(-15deg);
}

.btn-outline {
    border: 1px solid white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline:hover {
    transform: translateY(-3px);
    background: white;
    color: black;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover::before {
    transform: translateX(100%) skewX(-15deg);
}

/* BROCHURE */
.brochure-card {
    flex: 1 1 20%;
    background-color: #3e3e3e;
    border-radius: 25px;
    padding: 20px;
    text-align: center;
    color: white;
    max-width: 230px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: perspective(1000px) translateX(30px) rotateY(-5deg);
    animation: cardReveal 2.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.9s;
}

@keyframes cardReveal {
    0% {
        opacity: 0;
        transform: perspective(1000px) translateX(30px) rotateY(-5deg);
    }

    100% {
        opacity: 1;
        transform: perspective(1000px) translateX(0) rotateY(0);
    }
}

.sun-tata-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12%;
    /* margin-top: 4%; */

}

.brand-logo img {
    width: 150px;
    margin-left: -50px;


}

.brand-logo h2 {
    font-size: 1.6em;
    font-weight: bold;
    color: #007ac1;
}

.brand-logo h2 span {
    color: #4a4a4a;
}

.card-image img {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    margin-bottom: 10px;
}

.brochure-card h3 {
    color: #ffb100;
    font-size: 20px;
    margin-bottom: 10px;
}

.btn-view {
    background-color: white;
    color: #ffb100;
    border-radius: 25px;
    padding: 5px 10px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
    width: 200px;
    margin-top: 10px;
}

.btn-view:hover {
    background-color: #ffb100;
    color: white;
}

@media screen and (max-width:1366px) {
    .section1-container {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        justify-content: space-between;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .hero-text {
        width: 100%;
    }

    /* BROCHURE */
    .brochure-card {
        /* flex: 1 1 100%; */
        height: 305px;
        background-color: #3e3e3e;
        border-radius: 25px;
        padding: 20px;
        text-align: center;
        color: white;
        max-width: 300px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        opacity: 0;
        transform: perspective(1000px) translateX(30px) rotateY(-5deg);
        animation: cardReveal 2.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.9s;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .promo-banner {
        margin-top: 30px !important;
    }

    .section1 {
        padding: 20px;
        margin: 0;
        min-height: auto;
        margin-top: 20px;
    }

    .section1-container {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }

    .hero-text {
        width: 100%;
        padding: 20px;
        border-radius: 20px;
        margin-top: 5%;
    }

    .hero-text h1 {
        font-size: 25px !important;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .brand-logo img {
        width: auto;
        height: 100px;
        /* object-fit:contain; */
    }

    .buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        padding: 12px;
        font-size: 0.95rem;
        text-align: center;
    }

    .brochure-card {
        width: 100%;
        max-width: none;
        padding: 20px;
        margin: 0;
    }

    .btn-view {
        width: 100%;
        padding: 12px;
        font-size: 0.95rem;
    }

    .section2 {
        padding: 30px 15px;
        gap: 20px;
    }

    .mission-box,
    .about-box {
        padding: 25px;
        border-radius: 20px;
    }

    .mission-box h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .mission-box h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .mission-box p,
    .about-box p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .arrow-icon {
        width: 40px;
        height: 40px;
    }

    .arrow-icon i {
        font-size: 1.2rem;
    }

    .section3-bg {
        padding: 30px 15px;
        border-radius: 20px;
        margin: 20px 15px;
    }

    .services-section {
        flex-direction: column;
        gap: 15px;
    }

    .service-card {
        width: 100%;
        max-width: none;
        padding: 20px;
        height: auto;
    }

    .service-card img {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .carousel-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin-bottom: 20px;
    }

    .carousel-header h2 {
        font-size: 1.5rem;
    }

    .carousel-header p {
        font-size: 0.9rem;
    }

    .view-all-btn {
        width: 100%;
        padding: 12px;
        font-size: 0.95rem;
    }

    .section5 {
        padding: 30px 15px;
    }

    .section5-content {
        flex-direction: column;
        gap: 20px;
    }

    .images-column,
    .text-column {
        width: 100%;
    }

    .top-images {
        flex-direction: column;
        gap: 15px;
    }

    .image-box {
        height: 200px;
        border-radius: 15px;
    }

    .bottom-image img {
        height: 400px;
        border-radius: 15px;
    }

    .text-column h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .text-column p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .cta-button a {
        display: inline-block;
        padding: 12px 25px;
        font-size: 0.95rem;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .section1 {
        padding: 15px;
    }

    .hero-text {
        padding: 15px;
        margin-top: 50px;
    }

    .hero-text h1 {
        font-size: 10px;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .btn-primary,
    .btn-outline,
    .btn-view {
        padding: 10px;
        font-size: 0.9rem;
    }

    .section2 {
        padding: 20px 10px;
    }

    .mission-box,
    .about-box {
        padding: 20px;
    }

    .mission-box h2 {
        font-size: 1.3rem;
    }

    .mission-box p,
    .about-box p {
        font-size: 0.85rem;
    }

    .arrow-icon {
        width: 35px;
        height: 35px;
    }

    .section3-bg {
        padding: 20px 10px;
        margin: 15px 10px;
    }

    .service-card {
        padding: 15px;
    }

    .service-card img {
        width: 40px;
        height: 40px;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .carousel-header h2 {
        font-size: 1.3rem;
    }

    .carousel-header p {
        font-size: 0.85rem;
    }

    .image-box,
    .bottom-image img {
        height: 180px;
    }

    .text-column h2 {
        font-size: 1.3rem;
    }

    .text-column p {
        font-size: 0.85rem;
    }
}



/********************* SECTION2 *************************************/

.section2 {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 50px 30px;
    background-color: #1a1a1a;
    visibility: visible;
}

.mission-box,
.about-box {
    flex: 1 1 48%;
    border-radius: 60px;
    padding: 40px;
    box-sizing: border-box;
    visibility: visible;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.mission-box {
    background-color: #ffd375;
    color: #000;
    position: relative;
}

.mission-box h4 {
    color: #0072ce;
    font-weight: bolder;
    font-size: 32px;
    margin-bottom: 5px;
    visibility: visible;
}

.mission-box h2 {
    font-size: 36px;
    font-weight: 800;
    margin: 10px 0;
    line-height: 1.2;
    visibility: visible;
}

.mission-box p {
    margin-top: -45px;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    visibility: visible;
}


.para-arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.arrow-icon {
    width: 60px;
    height: 60px;
    border: 2px solid #0072ce;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(5px);
}

.arrow-icon i {
    color: #0072ce;
    transform: rotate(-20deg);
    font-size: 24px;
}

.about-box {
    background-color: #0072ce;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    visibility: visible;
}

.about-box p {
    font-size: 16px;
    margin-bottom: 5px;
    visibility: visible;
}

.about-image {
    visibility: visible;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    margin-top: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}





/* Mobile Portrait - 480px and below */
@media (max-width: 480px) {
    .section2 {
        padding: 20px 15px;
    }

    .mission-box,
    .about-box {
        padding: 20px;
        border-radius: 30px;
    }

    .mission-box h2 {
        font-size: 20px;
    }

    .mission-box h4 {
        font-size: 16px;
    }

    .arrow-icon {
        width: 36px;
        height: 36px;
    }

    .arrow-icon i {
        font-size: 14px;
    }

    .about-image img {
        border-radius: 15px;
    }
}

/* FOR MOBILE  */
@media (max-width: 768px) {
    .section1 {
        padding: 30px;
        padding-top: 20%;
    }

    .section1-container {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .hero-text {
        padding: 30px;
        width: 100%;
    }

    .buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .brochure-card {
        max-width: 100%;
        width: 100%;
    }

    .btn-view {
        width: 100%;
    }

    .section2 {
        flex-direction: column;
        padding: 30px 16px;
        gap: 20px;
        overflow: hidden;
        /* transition: none; */
    }

    .mission-box,
    .about-box {
        flex: 1 1 100%;
        border-radius: 30px;
        padding: 24px;
    }

    .mission-box h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .mission-box h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .mission-box p,
    .about-box p {
        font-size: 14px;
        margin-top: 20px;
    }

    .arrow-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .arrow-icon i {
        font-size: 20px;
    }

    .about-image img {
        border-radius: 20px;
        margin-top: 16px;
    }

    .section3-bg {
        padding: 20px 15px;
        border-radius: 20px;
    }

    .services-section {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        transform: translateY(0);
    }

    .service-card {
        width: 100%;
        max-width: 330px;
        height: auto;
        padding: 20px;
        text-align: center;
    }

    .service-card img {
        width: 50px;
        height: 50px;
        margin-bottom: 30px;
    }

    .service-card p {
        font-size: 14px;
        margin-top: 10px;
    }

    .carousel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 0 10px;
    }

    .carousel-header h2 {
        font-size: 22px;
        text-align: center;
    }

    .carousel-header p {
        font-size: 14px;
        text-align: center;
    }

    .view-all-btn {
        position: static;
        margin-top: 10px;
        align-self: center;
        padding: 8px 16px;
        font-size: 14px;
        width: fit-content;
    }

    .responsive {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-top: 20px;
    }

    .rooftop-card {
        width: 100%;
        max-width: 330px;
        padding: 20px;
    }

    .rooftop-card h3 {
        font-size: 18px;
    }

    .card-text {
        font-size: 13px;
        margin: 10px 0;
    }

    .slick-dots {
        display: none !important;
    }

    .slick-dots li button {
        width: 10px;
        height: 10px;
    }

    .section5 {
        background-image: url('../images/section-bg5.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 30px 16px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section5-content {
        flex-direction: column;
        display: flex;
        gap: 24px;
        text-align: center;
        width: 100%;
    }

    .images-column,
    .text-column {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .top-images {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
    }

    .image-box {
        width: 100%;
        max-width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 16px;
    }

    .bottom-image img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 16px;
    }

    .text-column h2 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .text-column p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .cta-button {
        font-size: 0.95rem;
        padding: 10px 20px;
        border-radius: 25px;
        margin: 0 auto;
    }

    .testimonials-section {
        height: auto;
        padding: 30px 12px;
        background-size: cover;
        background-position: center;
    }

    .testimonials-container {
        max-width: 100%;
        padding: 0;
        margin-top: 10px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .testimonial-card {
        max-width: 100%;
        padding: 15px;
        gap: 15px;
    }

    .testimonial-image {
        width: 100px;
        height: 100px;
    }

    .testimonial-content {
        padding: 15px;
    }

    .testimonial-rating {
        gap: 3px;
    }

    .star {
        font-size: 1rem;
        color: #fbbf24;
        opacity: 0;
        transform: scale(0.5);
        transition: all 0.3s ease;
    }

    .testimonial-card.active .star {
        opacity: 1;
        transform: scale(1);
    }

    .testimonial-author h3 {
        font-size: 1.05rem;
        margin: 0;
    }

    .author-title {
        font-size: 0.85rem;
        color: #555;
    }

    .carousel-controls {
        margin-top: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .carousel-nav-buttons {
        display: flex;
        gap: 20px;
    }

    .carousel-prev,
    .carousel-next {
        background: transparent;
        border: none;
        font-size: 1.4rem;
        color: #fff;
        cursor: pointer;
        opacity: 0.7;
    }

    .carousel-indicators {
        display: flex;
        gap: 8px;
        justify-content: center;
    }

    .carousel-indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
    }

    .carousel-indicator.active {
        background: #fbbf24;
        transform: scale(1.2);
    }
}



/******************************** section3 ***********************************/

.section3 {
    opacity: 0;
    transform: translateY(50px);
    animation: section3FadeIn 2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes section3FadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.section3-content {
    opacity: 0;
    transform: scale(0.9);
    animation: contentReveal 2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 1.5s;
}

@keyframes contentReveal {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.section3-title {
    opacity: 0;
    transform: translateX(-30px);
    animation: titleSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.6s;
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.section3-bg {
    background-image: url('../images/section3-bg.png');
    background-size: cover;
    background-color: #007ac1;
    background-repeat: no-repeat;
    padding-bottom: 30px;
    border-radius: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: sectionFadeIn 0.8s ease-out forwards;
}

@keyframes sectionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    z-index: 4;
    position: relative;
    transform: translateY(50px);
}

.service-card {
    background-color: #e4a633;
    padding: 25px 20px;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    text-align: center;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: cardPopIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

@keyframes cardPopIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.service-card:nth-child(1) {
    animation-delay: 0.2s;
}

.service-card:nth-child(2) {
    animation-delay: 0.4s;
}

.service-card:nth-child(3) {
    animation-delay: 0.6s;
}

.service-card:nth-child(4) {
    animation-delay: 0.6s;
}

.service-card img {
    width: 80px;
    height: 80px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
    margin-top: -20px;
}

.service-card:hover img {
    transform: scale(1.1) rotate(5deg);
}

.service-card p {
    font-size: 14px;
    font-weight: bold;
    margin-top: 15px;
    line-height: 1.3;
}

.container {
    padding: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    max-width: 1280px;
    margin: auto;
    overflow: hidden;
    background-image: url('../images/carousel-bg.png');
    box-sizing: border-box;
    opacity: 0;
    animation: containerFadeIn 0.8s ease-out forwards 0.6s;
}

@keyframes containerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.carousel-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0;
    animation: slideInLeft 0.6s ease-out forwards 0.8s;
}

.carousel-header p {
    font-size: 16px;
    color: #ddd;
    opacity: 0;
    animation: slideInLeft 0.6s ease-out forwards 1s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.view-all-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: #fbbf24;
    color: white;
    font-weight: bold;
    padding: 10px 18px;
    border-radius: 20px;
    text-decoration: none;
    margin-top: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    background: #e4a633;
}

.responsive {
    width: 100%;
    padding: 0px;
}

.rooftop-card {
    max-width: 380px;
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;

    margin: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.rooftop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.rooftop-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin: 0;
    padding-bottom: 10px;
}

.card-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.rooftop-card:hover .card-image {
    transform: scale(1.03);
}

.card-text {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin: 10px 0;
    line-height: 1.4;
}

.slick-dots {
    text-align: center;
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

.slick-dots li {
    display: inline-block;
    margin: 0 6px;
    background-color: #d9d9d9;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.slick-dots li:hover {
    transform: scale(1.2);
}

.slick-dots li button {
    font-size: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #d9d9d9;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.slick-dots li.slick-active button {
    background-color: #e4a633;
    transform: scale(1.2);
}






/* Small Screens (Mobile, Tablets) */
@media (max-width: 768px) {
    .services-section {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 20px 10px;
    }

    .service-card {
        width: 200px;
        height: 200px;
        padding: 20px 15px;
    }

    .service-card img {
        width: 70px;
        height: 70px;
    }

    .service-card p {
        font-size: 14px;
    }

    .carousel-header h2 {
        font-size: 28px;
    }

    .rooftop-card {
        max-width: 100%;
    }
}

/* FOR MOBILE  */
@media (max-width: 768px) {
    .section3-bg {
        padding: 20px 15px;
        border-radius: 20px;
    }

    .services-section {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        transform: translateY(0);
    }

    .service-card {
        width: 100%;
        max-width: 330px;
        height: auto;
        padding: 20px;
        text-align: center;
    }

    .service-card img {
        width: 50px;
        height: 50px;
        margin-bottom: 30px;
    }

    .service-card p {
        font-size: 14px;
        margin-top: 10px;
    }

    .carousel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 0 10px;
    }

    .carousel-header h2 {
        font-size: 22px;
        text-align: center;
    }

    .carousel-header p {
        font-size: 14px;
        text-align: center;
    }

    .view-all-btn {
        position: static;
        margin-top: 10px;
        align-self: center;
        padding: 8px 16px;
        font-size: 14px;
        width: fit-content;
    }

    .responsive {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-top: 20px;
    }

    .rooftop-card {
        width: 100%;
        max-width: 330px;
        padding: 20px;
    }

    .rooftop-card h3 {
        font-size: 18px;
    }

    .card-text {
        font-size: 13px;
        margin: 10px 0;
    }

    .slick-dots {
        display: none !important;
    }

    .slick-dots li button {
        width: 10px;
        height: 10px;
    }

    .section5 {
        background-image: url('../images/section-bg5.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 30px 16px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section5-content {
        flex-direction: column;
        display: flex;
        gap: 24px;
        text-align: center;
        width: 100%;
    }

    .images-column,
    .text-column {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .top-images {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
    }

    .image-box {
        width: 100%;
        max-width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 16px;
    }

    .bottom-image img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 16px;
    }

    .text-column h2 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .text-column p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .cta-button {
        font-size: 0.95rem;
        padding: 10px 20px;
        border-radius: 25px;
        margin: 0 auto;
    }

    .testimonials-section {
        height: auto;
        padding: 30px 12px;
        background-size: cover;
        background-position: center;
    }

    .testimonials-container {
        max-width: 100%;
        padding: 0;
        margin-top: 10px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .testimonial-card {
        max-width: 100%;
        padding: 15px;
        gap: 15px;
    }

    .testimonial-image {
        width: 100px;
        height: 100px;
    }

    .testimonial-content {
        padding: 15px;
    }

    .testimonial-rating {
        gap: 3px;
    }

    .star {
        font-size: 1rem;
        color: #fbbf24;
        opacity: 0;
        transform: scale(0.5);
        transition: all 0.3s ease;
    }

    .testimonial-card.active .star {
        opacity: 1;
        transform: scale(1);
    }

    .testimonial-author h3 {
        font-size: 1.05rem;
        margin: 0;
    }

    .author-title {
        font-size: 0.85rem;
        color: #555;
    }

    .carousel-controls {
        margin-top: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .carousel-nav-buttons {
        display: flex;
        gap: 20px;
    }

    .carousel-prev,
    .carousel-next {
        background: transparent;
        border: none;
        font-size: 1.4rem;
        color: #fff;
        cursor: pointer;
        opacity: 0.7;
    }

    .carousel-indicators {
        display: flex;
        gap: 8px;
        justify-content: center;
    }

    .carousel-indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
    }

    .carousel-indicator.active {
        background: #fbbf24;
        transform: scale(1.2);
    }
}



.section5 {
    background-image: url('../images/section-bg5.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    color: white;
}

.section5-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.images-column {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    width: 100%;
}

.image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
}

.image-grid .full-width-image {
    grid-column: 1 / -1;
    height: 220px;
}

.text-column {
    flex: 1 1 100%;
    text-align: center;
}

.text-column h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.highlight {
    color: #fcb426;
}

.text-column p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 0 10px;
    color: #ffffff;
}

.cta-button {
    background-color: #fcb426;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e0a420;
}

/* Medium and up screens */
@media (min-width: 768px) {
    .section5-content {
        flex-wrap: nowrap;
        text-align: left;
    }

    .images-column,
    .text-column {
        flex: 1;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .text-column h2 {
        font-size: 2.5rem;
    }
}

/* Large screens (Full HD and above) */
@media (min-width: 1400px) {
    .section5-content {
        max-width: 1600px;
        padding-top: 10%;

    }

    .image-grid img {
        height: 260px;
    }

    .image-grid .full-width-image {
        height: 280px;
    }

    .text-column h2 {
        font-size: 3rem;
    }

    .text-column p {
        font-size: 1.1rem;
    }
}

/************************** testimonials section **********************/


.testimonials-section {
    background-image: url(/assets/images/tesimonial-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.section-title {
    font-size: 30px;
    text-align: center;
    /* margin-bottom: 30px; */
    color: #fff;
}

.swiper-container {
    width: 100%;
    padding: 10px 0;
}

.swiper-wrapper {
    align-items: center;
}

.swiper-slide {
    width: 320px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.5;
    transform: scale(0.9);
    display: flex;
    justify-content: center;
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1.05);
}

.testimonial-card {
    background: white;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 20px;
    max-width: 800px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
    color: #000;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card.is-center {
    transform: scale(1.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
    z-index: 2;
}



.testimonial-image {
    width: 140px;
    height: 250px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.star {
    color: #fbbf24;
    font-size: 1.2em;
}

.testimonial-quote,
.testimonial-text {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-author h3 {
    font-size: 1.2em;
    margin: 0;
    font-weight: 600;
}

.author-title {
    font-size: 1em;
    color: rgba(0, 0, 0, 0.6);
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    font-size: 2rem;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
}

.swiper-pagination-bullet-active {
    background: #fbbf24;
}

/* Keep swiper-slide scaling modest */
.swiper-slide {
    opacity: 0.5;
    transform: scale(0.92);
    transition: all 0.4s ease;
}

.swiper-slide-prev,
.swiper-slide-next {
    opacity: 0.5;
    transform: scale(0.95);
}

/* Highlight active slide */
.swiper-slide-active {
    opacity: 1;
    transform: scale(1.1) !important;
}

/* Highlight card inside center slide */
.swiper-slide-active .testimonial-card {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    z-index: 2;
}




/* Responsiveness */

/* Mobile Screens (Up to 768px) */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px;
        height: auto;
    }

    .testimonials-container {
        max-width: 90%;
    }

    .section-title {
        font-size: 2.2em;
        margin-bottom: 20px;
    }

    .testimonial-card {
        max-width: 500px;
        padding: 15px;
        gap: 20px;
    }

    .testimonial-image {
        width: 100px;
        height: 170px;
    }

    .testimonial-card .testimonial-quote {
        font-size: 1em;
    }

    .testimonial-card .testimonial-text {
        font-size: 0.9em;
    }

    .testimonial-card .testimonial-author h3 {
        font-size: 1.1em;
    }

    .carousel-controls {
        flex-direction: column;
        gap: 10px;
    }
}

/* Extra Small Screens (Up to 480px) */
@media (max-width: 480px) {
    .testimonials-section {
        padding: 40px 10px;
        height: auto;
    }

    .testimonials-container {
        max-width: 100%;
    }

    .section-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .testimonial-card {
        max-width: 100%;
        padding: 10px;
    }

    .testimonial-image {
        width: 80px;
        height: 140px;
    }

    .testimonial-card .testimonial-quote {
        font-size: 0.9em;
    }

    .testimonial-card .testimonial-text {
        font-size: 0.85em;
    }

    .testimonial-card .testimonial-author h3 {
        font-size: 1em;
    }

    .carousel-controls {
        gap: 5px;
    }

    .carousel-indicator {
        width: 8px;
        height: 8px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        font-size: 10px;
        width: 10px !important;
        height: 10px !important;
    }

    .swiper-button-prev {
        left: 5px;
    }

    .swiper-button-next {
        right: 5px;
    }
}


/* section6 */
/* section6 FAQ */
.section6 {
    background-color: #feecc9;
    padding: 10px;
    text-align: center;
}

.faq-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #000;
}

.faq-subtitle {
    font-size: 1.8rem;
    font-weight: bold;
    color: #d59e22;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 5px #b6ff9b;
    padding: 0 20px;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid #e0ffe0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: #333;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #444;
    font-size: 0.95rem;
    padding-bottom: 0;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-item.active .faq-icon {
    color: red;
}


@media (max-width: 768px) {
    .testimonials-section {
        height: auto;
        padding: 30px 12px;
        background-size: cover;
        background-position: center;
    }

    .testimonials-container {
        max-width: 100%;
        padding: 0;
        margin-top: 10px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .testimonial-card {
        max-width: 100%;
        padding: 15px;
        gap: 15px;
    }

    .testimonial-image {
        width: 100px;
        height: 100px;
    }

    .testimonial-content {
        padding: 15px;
    }

    .testimonial-rating {
        gap: 3px;
    }

    .star {
        font-size: 1rem;
        color: #fbbf24;
        opacity: 0;
        transform: scale(0.5);
        transition: all 0.3s ease;
    }

    .testimonial-card.active .star {
        opacity: 1;
        transform: scale(1);
    }

    .testimonial-author h3 {
        font-size: 1.05rem;
        margin: 0;
    }

    .author-title {
        font-size: 0.85rem;
        color: #555;
    }

    .carousel-controls {
        margin-top: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .carousel-nav-buttons {
        display: flex;
        gap: 20px;
    }

    .carousel-prev,
    .carousel-next {
        background: transparent;
        border: none;
        font-size: 1.4rem;
        color: #fff;
        cursor: pointer;
        opacity: 0.7;
    }

    .carousel-indicators {
        display: flex;
        gap: 8px;
        justify-content: center;
    }

    .carousel-indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
    }

    .carousel-indicator.active {
        background: #fbbf24;
        transform: scale(1.2);
    }
}

/* HD Screens (1366x768) */
@media screen and (min-width: 1366px) and (max-width: 1919px) {
    .section1 {
        max-width: 1200px;
        /* margin: 35px auto; */
        padding: 60px;
    }

    .hero-text {
        padding: 35px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .brochure-card {
        max-width: 250px;
    }

    .section2 {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 25px;
    }

    .mission-box h2 {
        font-size: 2rem;
    }

    .service-card {
        width: 180px;
        height: 180px;
    }

    .section5 {
        max-width: 100%;
        margin: 0 auto;
    }

    .image-box {
        height: 220px;
    }

    .bottom-image img {
        height: 220px;
    }
}

/* Full HD Screens (1920x1080) */
@media screen and (min-width: 1920px) {
    .section1 {
        max-width: 1600px;
        margin: 50px auto;
        padding: 60px;
    }

    .hero-text {
        padding: 45px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }

    .brochure-card {
        max-width: 280px;
    }

    .section2 {
        /* max-width: 1600px; */
        margin: 0 auto;
        padding: 50px 30px;
    }

    .mission-box h2 {
        font-size: 2.5rem;
    }

    .service-card {
        width: 220px;
        height: 220px;
    }

    .section5 {
        max-width: 1600px;
        margin: 0 auto;
    }

    .image-box {
        height: 280px;
    }

    .bottom-image img {
        height: 280px;
    }
}

/* Mac Devices */
@media screen and (min-width: 1440px) and (max-width: 2560px) {

    .section1 {
        background: url('../images/sectyion-bg.png') no-repeat center center / cover;
        border-radius: 60px;
        padding: 60px;
        margin: 10px auto;
        position: relative;
        max-width: 95%;
        overflow: hidden;
        box-sizing: border-box;
        opacity: 0;
        transform: perspective(1000px) translateY(30px) rotateX(5deg);
        animation: section1Reveal 2.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }


    @keyframes section1Reveal {
        0% {
            opacity: 0;
            transform: perspective(1000px) translateY(30px) rotateX(5deg);
        }

        100% {
            opacity: 1;
            transform: perspective(1000px) translateY(0) rotateX(0);
        }
    }

    /* .logo img {
    height: 100px;
    opacity: 0;
    transform: scale(0.8) rotate(-5deg);
    animation: logoReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.3s;
} */

    @keyframes logoReveal {
        0% {
            opacity: 0;
            transform: scale(0.8) rotate(-5deg);
        }

        100% {
            opacity: 1;
            transform: scale(1) rotate(0);
        }
    }

    .quote-button .btn {
        background-color: #ffb100;
        color: white;
        padding: 10px 20px;
        border-radius: 20px;
        font-weight: 400;
        text-decoration: none;
        transform: translateY(0);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
    }



    .quote-button .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }

    .quote-button .btn:hover::after {
        transform: translateX(100%) skewX(-15deg);
    }

    /* BANNER */
    .promo-banner {
        background-color: white;
        color: #ffb100;
        display: flex;
        align-items: center;
        font-weight: bold;
        padding: 8px 20px;
        border-radius: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        width: fit-content;
        gap: 20px;
        opacity: 0;
        transform: translateY(20px) scale(0.95);
        animation: bannerReveal 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.5s;
        margin-top: 10px;
    }

    .sun-rotating {
        height: 50px;
        width: auto;
    }

    @keyframes bannerReveal {
        0% {
            opacity: 0;
            transform: translateY(20px) scale(0.95);
        }

        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    /* CONTENT */
    .section1-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* flex-wrap: wrap; */
        gap: 40px;
        /* margin-top: 20px; */
        width: 100%;
    }

    /* HERO */
    .hero-text {
        flex: 1 1 55%;
        background: rgba(0, 0, 0, 0.65);
        border-radius: 30px;
        border: 5px solid #ffb100;
        padding: 40px;
        color: white;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
        opacity: 0;
        transform: perspective(1000px) translateX(-30px) rotateY(5deg);
        animation: heroReveal 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.7s;
    }

    @keyframes heroReveal {
        0% {
            opacity: 0;
            transform: perspective(1000px) translateX(-30px) rotateY(5deg);
        }

        100% {
            opacity: 1;
            transform: perspective(1000px) translateX(0) rotateY(0);
        }
    }

    .hero-text h1 {
        font-size: 2.8em;
        line-height: 1.3;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(10px);
        animation: textReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 1s;
    }

    @keyframes textReveal {
        0% {
            opacity: 0;
            transform: translateY(10px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-text h1 span {
        color: #2196f3;
        display: inline-block;
        animation: colorPulse 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
        position: relative;
    }

    .hero-text h1 span::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;

        background-size: 200% 100%;
        animation: gradientFlow 3s linear infinite;
    }

    @keyframes colorPulse {
        0% {
            color: #2196f3;
            transform: scale(1);
        }

        50% {
            color: #64b5f6;
            transform: scale(1.05);
        }

        100% {
            color: #2196f3;
            transform: scale(1);
        }
    }

    @keyframes gradientFlow {
        0% {
            background-position: 0% 50%;
        }

        100% {
            background-position: 200% 50%;
        }
    }

    .hero-text p {
        font-size: 1.2em;
        color: #ffb100;
        margin-bottom: 30px;
        opacity: 0;
        transform: translateY(10px);
        animation: textReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 1.2s;
    }

    .buttons {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        opacity: 0;
        transform: translateY(10px);
        animation: textReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 1.4s;
    }

    .btn-primary {
        background-color: #ffb100;
        color: white;
        padding: 12px 24px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        transform: translateY(0);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
        transform: translateX(-100%) skewX(-15deg);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }

    .btn-primary:hover::before {
        transform: translateX(100%) skewX(-15deg);
    }

    .btn-outline {
        border: 1px solid white;
        padding: 12px 24px;
        border-radius: 25px;
        text-decoration: none;
        color: white;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        transform: translateY(0);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .btn-outline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
        transform: translateX(-100%) skewX(-15deg);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .btn-outline:hover {
        transform: translateY(-3px);
        background: white;
        color: black;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }

    .btn-outline:hover::before {
        transform: translateX(100%) skewX(-15deg);
    }

    /* BROCHURE */
    .brochure-card {
        flex: 1 1 20%;
        background-color: #3e3e3e;
        border-radius: 25px;
        padding: 20px;
        text-align: center;
        color: white;
        /* max-width: 230px; */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        opacity: 0;
        transform: perspective(1000px) translateX(30px) rotateY(-5deg);
        animation: cardReveal 2.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.9s;
    }

    @keyframes cardReveal {
        0% {
            opacity: 0;
            transform: perspective(1000px) translateX(30px) rotateY(-5deg);
        }

        100% {
            opacity: 1;
            transform: perspective(1000px) translateX(0) rotateY(0);
        }
    }

    .sun-tata-logo {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* gap: 120px; */
        padding: 3%;
        /* margin-top: 4%; */

    }

    .brand-logo img {
        width: 150px;
        margin-left: -50px;


    }

    .brand-logo h2 {
        font-size: 1.6em;
        font-weight: bold;
        color: #007ac1;
    }

    .brand-logo h2 span {
        color: #4a4a4a;
    }

    .card-image img {
        width: 100%;
        height: 250px;
        border-radius: 15px;
        margin-bottom: 10px;
    }

    .brochure-card h3 {
        color: #ffb100;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .btn-view {
        background-color: white;
        color: #ffb100;
        border-radius: 25px;
        padding: 5px 10px;
        font-weight: bold;
        text-decoration: none;
        transition: background 0.3s;
        width: 200px;
        margin-top: 10px;
    }

    .btn-view:hover {
        background-color: #ffb100;
        color: white;
    }
}

/* Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .section1 {
        background-image: url(../images/sectyion-bg.png);
        background-size: cover;
        margin: auto;
        margin-top: 10px;
        border-radius: 30px;
        margin-bottom: 10px;
    }

    .section3-bg {
        background-image: url('../images/section3-bg.png');
        background-size: cover;
    }

    .section5 {
        background-image: url('../images/section-bg5.png');
        background-size: cover;
    }
}