/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
   
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

/* Header Styles */
.header{
    background:#ffffff;
    padding:0;
}

/* NAVBAR */
.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:72px;
    padding:10px 5px;
}

/* LOGO */
.logo{
    display:flex;
    align-items:center;
    height:72px;
}

.logo img{
    width:230px;
    height:auto;
    display:block;
}

/* MENU */
.nav-menu{
    list-style:none;
    display:flex;
    gap:60px;
    margin:0;
    padding:0;
}
.nav-menu a{
    color:#000000ad;
    text-decoration:none;
    font-weight:600;
    font-size:19px;
    position:relative;
    padding-bottom:4px;
    transition:color 0.3s ease;
}

/* hover effect */
.nav-menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0%;
    height:2px;
    background:linear-gradient(135deg,#5595b9,#2d3377);
    transition:width 0.3s ease;
}

.nav-menu a:hover{
    color:#2567bd;
}

.nav-menu a:hover::after{
    width:100%;
}

/* ENQUIRE BUTTON */
.nav-enquiry-btn{
    background:linear-gradient(135deg,#5595b9,#2d3377);
    color:#fff;
    padding:4px 2px;
    border-radius:30px;
    font-weight:600;
    text-decoration:none;
    height:50px;
    display:flex;
    align-items:center;
    box-shadow:0 0 15px rgba(85,149,185,0.5);
}

/* HAMBURGER */
.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
}
.hamburger span{
    height:3px;
    width:26px;
    background:#000;
    margin:4px 0;
}


/* Hero/Slider Styles */
.hero{
    height:85vh;
    position:relative;
    overflow:hidden;
}

.slider{
    width:100%;
    height:100%;
    position:relative;
}

.slide{
    width:100%;
    height:100%;
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1s ease;
}

.slide.active{
    opacity:1;
    z-index:1;
}

/* dark overlay */
.slide::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
}

/* content center */
.slide-content{
    position:relative;
    z-index:2;
    height:100%;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.slide-content h1{font-size:48px;}
.slide-content p{font-size:20px;}

.btn{
    margin-top:15px;
    padding:12px 28px;
    background:linear-gradient(135deg,#5595b9,#2d3377);
    color:#fff;
    border-radius:30px;
    text-decoration:none;
}

/* arrows */
.slider-controls{
    position:absolute;
    bottom:40px;
    width:100%;
    display:flex;
    justify-content:space-between;
    padding:0 40px;
    z-index:5;
}

.prev-btn,.next-btn{
    width:45px;
    height:45px;
    border-radius:50%;
    border:none;
    font-size:20px;
    background:rgba(255,255,255,0.3);
    color:#fff;
    cursor:pointer;
}

.hero {
    height: 100vh;
   
    position: relative;
}

.slider {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), ;
    background-size: cover;
    background-position: center;
}

.slide:nth-child(2) {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), ;
    background-size: cover;
    background-position: center;
}

.slide:nth-child(3) {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),;
    background-size: cover;
    background-position: center;
}

.slide:nth-child(4) {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), ;
    background-size: cover;
    background-position: center;
}

.slide-content {
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.slider-controls button {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s;
}

.slider-controls button:hover {
    background: rgba(255,255,255,0.3);
}

/* Button Styles */
.btn {
    display: inline-block;
    background: #2c5797;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #2c5797;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 126, 194, 0.3);
}

/* Welcome Section */
.welcome-content {

    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.welcome h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.welcome p {
    font-size: 1.1rem;
    line-height: 1.8;
}
.section-padding{
    padding:80px 0;
}

.welcome-row{
    display:flex;
    align-items:center;
    gap:40px;
}

.welcome-text{
    flex:1;
}

.welcome-text h2{
    font-size:36px;
    margin-bottom:15px;
}

.welcome-text p{
    font-size:18px;
    line-height:1.7;
    color:#444;
}

.welcome-image{
    flex:1;
    text-align:center;
}

.welcome-image img{
    width:100%;
    max-width:480px;
    border-radius:16px;
    box-shadow:0 12px 25px rgba(0,0,0,0.15);
}

/* MOBILE */
@media(max-width:768px){
    .welcome-row{
        flex-direction:column;
        text-align:center;
    }
}

/* Services Icons */

.services-section{
    background: linear-gradient(135deg,#687ec2,#152a6d) !important;
    padding:80px 0;
}


.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.service-icon {
    text-align: center;
    padding: 30px;
    background: rgb(247, 247, 247);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-icon:hover {
    transform: translateY(-10px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #1d1563, #4169e1);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
}

.service-icon h3 {
    margin-bottom: 15px;
    color: #333;
}

.read-more {
    color: #4169e1 ;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Why Choose Us */
.why-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.why-item {
    background: #e4e4e9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.why-item h3 {
    color: #305e92;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-item p {
    margin-bottom: 15px;
}

/* Services Page */
.page-header {
    background: linear-gradient(45deg, #365099, #1b3481);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-img {
    height: 250px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-img.full-width {
    height: 400px;
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.features h4 {
    margin: 20px 0 10px;
    color: #8a2be2;
}

.features ul {
    list-style: none;
    padding-left: 20px;
}

.features li {
    margin-bottom: 8px;
    position: relative;
}

.features li:before {
    content: "✓";
    color: #8a2be2;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

/* Contact Page */
/* Center the card, NOT the content */
.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 15px;
    text-align: left;
}

/* Card width */
.contact-grid {
    max-width: 920px;
    width: 100%;
}

/* Contact info card */
.contact-info {
    background: #ffffff;
    padding: 40px 45px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Title */
.contact-info h2 {
    margin-bottom: 35px;
    font-weight: 700;
    text-align: center;
}

/* Proper alignment for each row */
.contact-item {
    display: grid;
    grid-template-columns: 40px 1fr; /* fixed icon width */
    column-gap: 20px;
    align-items: flex-start;
    margin-bottom: 22px;
}

/* Icon alignment */
.contact-item i {
    font-size: 26px;
    color: #264572;
    margin-top: 4px; /* aligns with heading text */
}

/* Text block */
.contact-item div {
    text-align: left;
}

/* Headings */
.contact-item h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
}

/* Paragraph spacing */
.contact-item p {
    margin: 0;
    line-height: 1.6;
}

/* Mobile layout */
@media (max-width: 576px) {
    .contact-info {
        padding: 30px;
    }

    .contact-item {
        grid-template-columns: 30px 1fr;
        column-gap: 15px;
    }
}

/* Footer */


/* Footer base */
.footer {
    background: #0f172a;
    color: #ffffff;
    padding-top: 60px;
}

/* Footer container */
.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* EQUAL WIDTH */
    gap: 30px;
}

/* Footer sections */
.footer-section {
    display: flex;
    flex-direction: column;
}

/* Section titles */
.footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

/* Footer links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #38bdf8;
}

/* QR section */
.qr-footer {
    align-items: center;
    text-align: center;
}

.qr-card img {
    max-width: 150px;
    border-radius: 10px;
    background: #ffffff;
    padding: 10px;
}

/* Contact info */
.footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Contact item */
.footer .contact-item {
    display: grid;
    grid-template-columns: 28px 1fr; /* ICON FIX */
    align-items: flex-start;
    gap: 12px;
}

/* Contact icons */
.footer .contact-item i {
    font-size: 16px;
    color: #38bdf8 !important;
    margin-top: 4px;
}

/* Contact text */
.footer .contact-text {
    font-size: 14px;
    color: #0f1c2d;
    line-height: 1.6;
}

/* Footer bottom */
.footer-bottom {
    margin-top: 50px;
    padding: 18px 20px;
    background: #020617;
    text-align: center;
    font-size: 14px;
}

.footer-bottom a {
    color: #38bdf8;
    text-decoration: none;
}
/* Footer base */
.footer {
    background: linear-gradient(180deg, #0b1220, #020617);
    color: #ffffff;
    padding: 70px 0 0;
}

/* Grid layout */
.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Section headings */
.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 14px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #38bdf8;
}

/* Contact list */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    margin-bottom: 14px;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
}

/* Contact icons */
.footer-contact i {
    color: #38bdf8;
    font-size: 15px;
    margin-top: 4px;
}

/* QR */
.qr-footer {
    text-align: center;
}

.qr-card img {
    max-width: 160px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}

/* Footer bottom */
.footer-bottom {
    margin-top: 50px;
    background: #020617;
    padding: 18px;
    text-align: center;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact li {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer .contact-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .services-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.testimonials-section{
    padding:80px 0;
    background:white;
}

.section-title{
    text-align:center;
    font-size:34px;
    margin-bottom:40px;
}

.testimonial-scroll{
    display:flex;
    gap:25px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding-bottom:10px;
}

.testimonial-scroll::-webkit-scrollbar{
    display:none;
}

.testimonial-card{
    min-width:270px;
    background:#ffffff;
    padding:25px;
    border-radius:16px;
    box-shadow:0 10px 20px rgba(0,0,0,0.12);
    transition:0.3s;
}

.testimonial-card:hover{
    transform:translateY(-6px);
}

.testimonial-card p{
    font-size:15px;
    color:#444;
    line-height:1.6;
}

.testimonial-card h4{
    margin-top:15px;
    font-size:18px;
    color:#2d3377;
}

.testimonial-card span{
    font-size:14px;
    color:#777;
}
.company-stats-section{
    padding:70px 0;
    background:#f5f7fb;
}
.about-combined-section{
    padding:80px 0;
    background:#f4f6fb;
}

/* Welcome Row */
.about-top-row{
    display:flex;
    align-items:center;
    gap:40px;
    margin-bottom:60px;
}

.about-text{
    flex:1;
}

.about-text h2{
    font-size:34px;
    font-weight:700;
    color:#1d1f7a;
    margin-bottom:15px;
}

.about-text p{
    font-size:16px;
    line-height:1.7;
    color:#444;
}

.about-image{
    flex:1;
    text-align:right;
}

.about-image img{
    max-width:420px;
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* Stats Grid */
.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-box{
    background:#fff;
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 12px 25px rgba(0,0,0,0.1);
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-10px);
}

.stat-icon{
    width:60px;
    height:60px;
    background:linear-gradient(135deg,#1d1f7a,#1278b3);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 15px;
    color:#fff;
    font-size:22px;
}

.stat-box h3{
    color:#1d1f7a;
    font-size:20px;
    margin-bottom:6px;
}

.stat-box p{
    font-size:14px;
    color:#555;
}

/* Responsive */
@media(max-width:992px){
    .about-top-row{
        flex-direction:column;
        text-align:center;
    }

    .about-image{
        text-align:center;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .stats-grid{
        grid-template-columns:1fr;
    }
}


.features-section{
    padding:80px 0;
    background:linear-gradient(135deg,#1d1f7a,#1278b3);
}

.section-title{
    text-align:center;
    font-size:34px;
    font-weight:700;
    color:rgba(0, 0, 0, 0.692);
    margin-bottom:50px;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.feature-box{
    background:#ffffff;
    padding:35px 30px;
    border-radius:20px;
    box-shadow:0 12px 25px rgba(0,0,0,0.1);
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-10px);
}

.feature-header{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
}

.feature-header i{
    font-size:28px;
    color:#1278b3;
}

.feature-header h3{
    font-size:22px;
    font-weight:700;
    color:#1d1f7a;
}

.feature-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.feature-box ul li{
    position:relative;
    padding-left:25px;
    margin-bottom:12px;
    font-size:15px;
    color:#444;
}

.feature-box ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:0;
    color:#1278b3;
    font-weight:700;
}

/* Responsive */
@media(max-width:768px){
    .features-grid{
        grid-template-columns:1fr;
    }
}
.highlight-section{
    background:linear-gradient(135deg,#edf2f5);
    padding:80px 0;
    color:#092549;
}

.highlight-title{
    text-align:center;
    font-size:32px;
    font-weight:700;
    margin-bottom:50px;
}

.highlight-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.highlight-box{
    background:rgba(255,255,255,0.12);
    border-radius:18px;
    padding:35px 20px;
    text-align:center;
    box-shadow:0 10px 20px rgba(0,0,0,0.2);
    transition:0.3s;
}

.highlight-box:hover{
    transform:translateY(-10px);
}

.highlight-box i{
    font-size:32px;
    margin-bottom:12px;
}

.highlight-box h3{
    font-size:28px;
    margin-bottom:6px;
}

.highlight-box p{
    font-size:15px;
    opacity:0.9;
}

/* Mobile */
@media(max-width:992px){
    .highlight-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .highlight-grid{
        grid-template-columns:1fr;
    }
}


    /* Grid Container */
    .service-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* Exactly 3 columns */
        gap: 30px; /* Space between cards */
        margin-top: 40px;
    }

    /* Force all cards to be the same height */
    .service-card {
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        height: 100%; /* Ensures they stretch to match the tallest card */
    }

    /* Ensure all images have the same aspect ratio */
    .service-img img {
        width: 100%;
        height: 250px; /* Fixed height for uniformity */
        object-fit: cover; /* Crops image to fit without stretching */
        display: block;
    }

    .service-info {
        padding: 20px;
        flex-grow: 1; /* Pushes content to fill the card */
        text-align: center;
    }

    /* Responsive: 1 column on mobile, 2 on tablets */
    @media (max-width: 992px) {
        .service-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
        .service-grid { grid-template-columns: 1fr; }
    }

    .orchestra-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        margin-top: 30px;
    }

    .orchestra-image {
        flex: 1;
        min-width: 350px;
        height: 500px;
    }

    .orchestra-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures the image looks professional and fills the space */
        display: block;
    }

    .orchestra-content {
        flex: 1;
        padding: 40px;
        min-width: 350px;
    }

    .orchestra-content h3 {
        font-size: 2rem;
        color: #333;
        margin-bottom: 15px;
    }

    .orchestra-content p {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 25px;
    }

    .feature-list {
        list-style: none;
        padding: 0;
    }

    .feature-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 12px;
        font-size: 1rem;
        color: #444;
        line-height: 1.5;
    }

    /* Decorative checkmark for the list */
    .feature-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #2d64b8; /* Gold color for a premium feel */
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .orchestra-image {
            height: 300px;
        }
        .orchestra-content {
            padding: 30px 20px;
        }
    }

    /* Form Section Styling */
#form {
    background: #b2c1ca;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

/* Input Fields */
.form-group {
    margin-bottom: 20px;
}

.form-control.box {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

/* Focus Effect - Changes color when user clicks to type */
.form-control.box:focus {
    border-color:  #2d8cb8; /* Gold theme matching your brand */
    background-color: #fff;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
    outline: none;
}

/* Captcha Styling */
.captcha-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

img.box {
    border-radius: 6px;
    border: 1px solid #ddd;
}

.captcha-text {
    font-size: 13px;
    color: #777;
    margin-top: 5px;
    font-style: italic;
}

/* Submit Button */
.btn-primary {
    width: 100%;
    padding: 15px;
    background-color: #5b90a8;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #2d8cb8;
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Placeholder Color */
::placeholder {
    color: #aaa;
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #form {
        padding: 25px;
    }
}
.floating-social-footer{
    position: fixed;
    bottom: 90px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 99999;
}

.social-btn{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: 0.3s ease;
}

.social-btn:hover{
    transform: scale(1.15);
}

/* Colors */
.instagram{ background:#e1306c; }
.youtube{ background:#ff0000; }
.whatsapp{ background:#25d366; }
.facebook{ background:#1877f2; }
.call{ background:#ff9800; }


/* ==========================================================================
   MOBILE RESPONSIVE IMPROVEMENTS
   ========================================================================== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 15px;
    }
    
    /* Header & Navigation */
    .navbar {
        padding: 10px 15px;
        min-height: 60px;
    }
    
    .logo img {
        width: 180px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        z-index: 1000;
        transition: 0.3s;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-menu a {
        font-size: 18px;
        padding: 10px 0;
        display: block;
    }
    
    .nav-enquiry-btn {
        margin: 15px auto;
        width: 200px;
        justify-content: center;
    }
    
    /* Hero Section */
   .hero {
    position: relative;
}

.slider {
    position: relative;
    overflow: hidden;
}

/* Slide background */
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

/* Dark overlay (if any) */
.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

/* Slide content MUST be above overlay */
.slide-content {
    position: relative;
    z-index: 5;
    pointer-events: auto;   /* IMPORTANT */
}

/* Button clickable */
.slide-content a.btn {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}


.slider-controls {
    position: absolute;
    inset: 0;
    pointer-events: none;   /* allow clicks through */
}

.slider-controls button {
    pointer-events: auto;   /* buttons still clickable */
}

.slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

    
    /* Welcome Section */
    .welcome-row {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .welcome-text h2 {
        font-size: 28px;
    }
    
    .welcome-text p {
        font-size: 16px;
    }
    
    .welcome-image img {
        max-width: 100%;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-icon {
        padding: 20px 15px;
    }
    
    /* Testimonials */
    .testimonial-scroll {
        gap: 15px;
        padding: 10px 15px;
    }
    
    .testimonial-card {
        min-width: 250px;
    }
    
    /* About Combined Section */
    .about-top-row {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Highlight Grid */
    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Service Grid */
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Orchestra Section */
    .orchestra-container {
        flex-direction: column;
    }
    
    .orchestra-image {
        min-width: 100%;
        height: 300px;
    }
    
    .orchestra-content {
        padding: 30px 20px;
        min-width: 100%;
    }
    
    /* Form Section */
    #form {
        padding: 25px 20px;
    }
    
    .captcha-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    /* Padding adjustments */
    .section-padding {
        padding: 60px 0;
    }
    
    .testimonials-section,
    .about-combined-section,
    .features-section {
        padding: 60px 0;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    /* Header */
    .logo img {
        width: 150px;
    }
    
    /* Hero Section */
    .hero {
        height: 60vh;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    /* Welcome Section */
    .welcome-text h2 {
        font-size: 24px;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-box {
        padding: 25px 15px;
    }
    
    /* Highlight Grid */
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-box {
        padding: 25px 15px;
    }
    
    /* Service Grid */
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .service-img img {
        height: 200px;
    }
    
    /* Testimonials */
    .testimonial-card {
        min-width: 85vw;
        padding: 20px;
    }
    
    /* About Section */
    .about-text h2 {
        font-size: 28px;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        justify-content: center;
    }
    
    /* Floating Social */
    .floating-social-footer {
        bottom: 70px;
        right: 10px;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    /* QR Code */
    .qr-footer{
    text-align:center;
}

.qr-title{
    font-size:22px;
    color:#3ea6ff;
    margin-bottom:18px;
    position:relative;
}

.qr-title::after{
    content:"";
    width:48px;
    height:3px;
    background:#3ea6ff;
    position:absolute;
    left:50%;
    bottom:-6px;
    transform:translateX(-50%);
}

.qr-box{
    background:#ffffff;
    display:inline-flex;
    flex-direction:column;
    align-items:center;
    padding:16px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.qr-box img{
    width:170px;
    height:170px;
    display:block;
}

.qr-box p{
    margin-top:8px;
    font-size:13px;
    color:#444;
    font-weight:600;
}
}
/* Section spacing */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Title */
.section-title h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    margin-bottom: 40px;
}

/* Form Card */
.contact-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

/* Labels */
.contact-form-card label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

/* Inputs */
.contact-form-card .form-control {
    height: 48px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.contact-form-card textarea.form-control {
    height: auto;
}

/* Captcha image */
.captcha-img {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* Button */
.btn-submit {
    padding: 12px 40px;
    font-size: 16px;
    border-radius: 30px;
    font-weight: 600;
}

/* Mobile spacing */
@media (max-width: 576px) {
    .contact-form-card {
        padding: 25px;
    }
}
/* Common input & select styling */
.box.form-control {
    height: 48px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 15px;
    color: #908c8c;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Select specific styling */
select.box.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='gray' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    cursor: pointer;
}

/* Focus effect */
.box.form-control:focus {
    border-color: #0d6efd;   /* Bootstrap primary */
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,.15);
    outline: none;
}

/* Disabled placeholder */
select.box.form-control option[disabled] {
    color: #999;
}

/* Form group spacing */
.form-group {
    margin-bottom: 18px;
}

/* Mobile adjustment */
@media (max-width: 576px) {
    .box.form-control {
        height: 45px;
        font-size: 14px;
    }
}
.footer-bottom {
    background: #020617;
    padding: 18px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom .copyright {
    text-align: center;
    font-size: 14px;
    color: #cbd5e1;
}

.footer-bottom a {
    color: #38bdf8;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

