* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* consistent box model */
}

/* Prevent small horizontal overflow while we fix layout rules (temporary) */
body {
    font-family: 'Hind Madurai', sans-serif;
    overflow-x: hidden;
}

/* Make images fluid by default */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

p{
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}
section{
    margin: 5% 0;
}
a{
    text-decoration: none;
}
.gradient {
    background: linear-gradient(90deg, #4e54ff, #a855f7);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    letter-spacing: 1.2px;
}
.footer-section {
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    /* ensure the absolutely-positioned background has height to fill */
    min-height: 320px;
    font-family: 'Hind Madurai', sans-serif;
}

/* Background Image */
.footer-bg {
    /* use a path relative to the CSS file (css/style.css -> ../image/...) */
    background-image: url('../image/Footer-bg1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Dark Overlay (Opacity 0.8) */
.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
    z-index: 1;
}

/* Ensure content sits above overlay - only for containers, not bg/overlay */
.footer-section > .container,
.footer-section > .footer-bottom {
    position: relative;
    z-index: 2;
}

/* Footer Links */
.footer-link {
    color: #eaeaea;
    text-decoration: none;
    font-size: 16px;
    line-height: 2.2;
    letter-spacing: 0.5px;
}
.footer-link:hover {
    color: #fff;
}

/* Social Icons */
.social-icon {
    font-size: 22px;
    color: #eaeaea;
    text-decoration: none;
}
.social-icon:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Custom padding adjustments */
.footer-section h2 {
    padding: 0 1.5rem;
    letter-spacing: 0.5px;
}

.footer-section h5 {
    letter-spacing: 0.5px;
}

.footer-section p {
    padding: 0 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.footer-link,
.social-icon {
    transition: all 0.3s ease;
}


.blog-card img {
    object-fit: cover;
}

.read-more {
    font-size: 14px;
    text-decoration: none;
    color: #000;
}
.read-more:hover {
    color: #0d6efd;
}

.blog-section h2 {
    font-size: 42px;
}

@media (max-width: 768px) {
    .blog-section h2 {
        font-size: 32px;
    }
}
/* Background Image */
.testimonial-section {
    position: relative;
    overflow: hidden;
}

.testimonial-bg {
    background-image: url('../image/h3-bg-png-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Soft Overlay */
.testimonial-overlay {
    position: absolute;
    inset: 0;
    background: #f4f7fb;
    opacity: 0.75; /* adjust if needed */
    z-index: 2;
}

/* Bring actual content ABOVE overlay */
.testimonial-section .container,
.testimonial-section .swiper,
.testimonial-section .testimonial-card {
    position: relative;
    z-index: 3;
}
.testimonial-card {
    min-height: 290px;
}
.custom-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cfcfcf;
    border: none;
}
.custom-indicators .active {
    background-color: #5a3ff5 !important;
}

/* Carousel Controls Styling */
/*.carousel-indicators {*/
/*    bottom: -50px;*/
/*    position: relative;*/
/*}*/

.custom-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d0d0d0;
    border: 2px solid #d0d0d0;
    margin: 0 6px;
    opacity: 0.7;
}

.custom-indicators button.active {
    background-color: #5a3ff5;
    border-color: #5a3ff5;
    opacity: 1;
}

.testimonial-card {
    min-height: 300px;
}


/* Bullets visible */
.swiper-pagination {
    position: relative;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: #5a3ff5;
}

/* Navigation Arrows */
.custom-prev,
.custom-next {
    color: #5a3ff5;
    font-weight: bold;
}

.custom-prev:hover,
.custom-next:hover {
    color: #3f28cc;
}

.swiper-button-prev,
.swiper-button-next {
    top: 40%;
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 16px;
    font-weight: bold;
    color: #5a3ff5;
}

/* Mobile fixes */
@media (max-width: 768px) {
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}
/* 1️⃣ BACKGROUND IMAGE */
.tech-left-img {
    background-image: url('../image/h1-banner8.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    min-height: 600px;
    position: relative;
    z-index: 1;
}

/* 2️⃣ OVERLAY PNG (Shape) */
.tech-overlay-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* optional opacity */
    opacity: 0.75;           
    z-index: 2;
    pointer-events: none;
}

/* 3️⃣ COLOR OVERLAY — GRADIENT + BLEND MODE */
.tech-color-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;

    /* gradient overlay */
    background: linear-gradient(
        135deg,
        rgba(244, 247, 251, 0.95) 0%,     /* #f4f7fb */
        rgba(244, 247, 251, 0.85) 40%,
        rgba(244, 247, 251, 0.75) 100%
    );

    /* blend mode effect */
    mix-blend-mode: multiply;
}

/* Ensure content on right is NOT affected */
.technology-section .col-lg-7 {
    position: relative;
    z-index: 10;
}

/* Progress Bars */
.tech-progress {
    height: 6px;
    background: #ebeef2;
    border-radius: 20px;
}
.progress-bar {
    width: 0%;
    transition: width 1.5s ease;
}


.tech-progress .progress-bar {
    background: #7d45ff;
    border-radius: 20px;
}

/* Icon Box */
.icon-box {
    width: 50px;
    height: 50px;
    background: #f4f7fb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media(max-width: 768px) {
    .tech-left-img {
        min-height: 350px;
    }
}

/* Working Process CSS */


/* Background */
.process-bg {
    background-image: url('../image/h3-bg-png-3.png');
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0.14;
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Steps Container Above Background */
.working-process-section .container {
    position: relative;
    z-index: 5;
}

/* Polygon-style image shape */
.process-img-wrapper {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1 / 1;
    box-shadow: -8px 8px #7d45ff;
    border-radius: 30px 30px 80px 30px;
    position: relative;
}

.process-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px 25px 70px 25px;
}

/* Step badge */
.step-badge {
    position: absolute;
    bottom: -12px;
    right: -12px;
    background: #4b62ff;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}

/* GRADIENT ARROWS */
.gradient-arrow {
    font-size: 70px;
    background: linear-gradient(135deg, #7d45ff 0%, #4b62ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Arrow Positions */
.arrow {
    position: absolute;
    top: 110px;
    z-index: 20;
}

.arrow-1 { left: 31%; }
.arrow-2 { left: 65%; }

/* Hide on mobile */
@media (max-width: 992px) {
    .arrow { display: none !important; }
}

/* Slider CSS */

/* NAVBAR */


/* Transparent Navbar */
.nav-transparent {
    background: transparent !important;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 20;
}

.nav-link {
    color: #fff !important;
    margin: 0 12px;
}
.nav-link:hover { opacity: 0.7; }
a.nav-link {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
}
/* CTA Gradient */
.gradient-btn {
    background: linear-gradient(135deg, #7d45ff, #4b62ff);
    border: none;
    color: #fff;
}
.gradient-btn:hover {
    opacity: 0.9;
}

/* HERO HEADER */
.hero-header {
    overflow: hidden;
}

/* HERO SLIDE AREA */
.hero-slide {
    height: 95vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Overlay Shape Image - Positioned EXACTLY like design */
.overlay-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 5;
    pointer-events: none;
    max-width: 100%;
    display:none;
}

/* Keep text above overlay */
.hero-slide .container {
    position: relative;
    z-index: 10;
}
.carousel-control-next, .carousel-control-prev{
    z-index:99;
}
/* Mobile Nav Background */
@media(max-width: 992px) {
    .nav-transparent {
        background: rgba(0,0,0,0.65) !important;
        position: fixed;
    }
}

/* Slide Height Fix for Small Screens */
@media(max-width: 768px) {
    .hero-slide {
        height: 75vh;
    }
    .overlay-shape {
        width: 100%;
        opacity: 0.8;
    }
}

/* Base navbar styling */
#mainNav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5000;
    transition: all 0.3s ease;
}

/* Initial transparent navbar */
.nav-transparent {
    background: transparent !important;
}

/* After scroll → white navbar */
.nav-scrolled {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* Logo sizes */
.logo {
    height: 80px;
    transition: 0.3s ease;
}

/* Navigation link colors */
.nav-link {
    color: #fff !important;
    transition: 0.3s ease;
}

/* After scroll → dark nav links */
.nav-scrolled .nav-link {
    color: #111 !important;
}

/* When scrolled: change white logo → dark logo */
.nav-scrolled .logo-white {
    display: none !important;
}
.nav-scrolled .logo-dark {
    display: inline-block !important;
}

/* Initially hide dark logo */
.logo-dark {
    display: none;
}
ul.dropdown-menu.show {
    border: 0;
}
.dropdown-item{
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}
/* Mobile dropdown menu styling */
@media(max-width: 992px) {
    .navbar-collapse {
        background: rgba(255,255,255,0.95);
        margin-top: 10px;
        border-radius: 10px;
        padding: 15px;
    }

    .navbar-collapse .nav-link {
        color: #111 !important;
    }
    
}

/* What We DO CSS */


/* Section BG */
.services-section {
    background: #f8f9fb;
    position: relative;
}

/* Service Card */
.service-card {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Service Card Hover Effect */
/* Only animate inside the image area */
.service-img {
  position: relative;            /* gives room so shapes can show without covering the image */
  border-radius: 20px 20px 0 0;
  overflow: hidden;          /* we only want the image clipped, not the shapes */
  isolation: isolate;          /* creates a local stacking context */
}

/* keep the photo on top */
.service-img img {
  display: block;
  width: 100%;
  border-radius: 16px;
  position: relative;
  z-index: -1;                 /* image above shapes */
}

/* --- smaller corner shapes BEHIND the image --- */
.service-img::before,
.service-img::after {
  content: "";
  position: absolute;
  z-index: 0;                 /* behind the image */
  width: 100%;
  height: 100%;
  border-radius: 32px;
  transform: scale(0.2) rotate(20deg);
  transition: transform 0.45s ease;
  pointer-events: none;
}

/* top-left */
.service-img::before {
  top: -55%;
  left: -55%;
  background: rgba(78, 84, 255, 1);
  opacity: 0;
}

/* bottom-right */
.service-img::after {
  bottom: -55%;
  right: -55%;
  background: rgba(131, 94, 255, 1);
  transition-delay: 0.05s;
  opacity: 0;
}

/* animate on card hover */
.service-card:hover .service-img::before,
.service-card:hover .service-img::after {
  transform: scale(1) rotate(20deg);
    opacity: 0.8;
}

.service-content h5{
    z-index: 1;
    color:#000;
    text-decoration:none;
}

/* Image styling */
.service-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

/* Make blog images a bit smaller on narrow screens to avoid tall crops */
@media (max-width: 768px) {
    .blog-card img {
        height: 180px;
    }
}

/* Icon with gradient */
.gradient-icon {
    font-size: 40px;
    background: linear-gradient(135deg, #7d45ff, #4b62ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Swiper Buttons */
.swiper-button-prev,
.swiper-button-next {
    color: #5a3ff5;
}

.swiper-pagination-bullet-active {
    background: #5a3ff5 !important;
}

/* Responsive */
@media(max-width: 768px) {
    .service-img img {
        height: 200px;
    }
}

/* About Us CSS */


/* Wrapper ensures correct alignment */
.images-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin: auto;
}

/* TOP IMAGE */
.img-top {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
}

/* Play Button */
.play-btn {
    position: absolute;
    left: 35%;
    bottom: 35%;
    transform: translateX(-35%);
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #7d45ff, #4b62ff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 36px;
    z-index: 5;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* BOTTOM IMAGE (Overlap Positioning) */
.img-bottom {
    position: absolute;
    right: 0;
    bottom: -140px;
    border-radius: 22px;
    overflow: hidden;
}

/* Image shape rounding */
.img-top img,
.img-bottom img {
    border-radius: 22px;
}

/* Dotted Shapes */
.dots-shape {
    position: absolute;
    width: 140px;
    height: 140px;
    background-image: radial-gradient(#6a4bff 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.45;
    z-index: -1;
}

.dots-top {
    top: -30px;
    right: 110px;
}

.dots-bottom {
    bottom: -40px;
    left: -40px;
}

/* Responsive */
@media (max-width: 768px) {
    .img-bottom {
        display:none;
    }

    .play-btn {
        bottom: -20px;
        width: 70px;
        height: 70px;
        font-size: 26px;
    }

    .dots-shape {
        display: none;
    }
}

/* Stats Section Styles */

.stats-section {
    margin-top: 12%;
}
/* WRAPPER */
.stats-wrapper {
    background: #ffffff;
    border-radius: 25px;
    position: relative;
}

/* LEFT GRADIENT PANEL */
.gradient-box {
    background: linear-gradient(135deg, #1c7dfd, #7d45ff);
    position: relative;
}

/* STAT ICONS */
.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: #f5f4ff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: #7d45ff;
    flex-shrink: 0;
}

/* DIVIDER LINE */
.divider-line {
    width: 100%;
    height: 1px;
    background: #e6e6e6;
    margin: 15px 0;
}

/* RIGHT SIDE GRADIENT SHAPE */
.shape-right {
    position: absolute;
    right: -14%;
    top: 50%;
    width: 150px;
    height: 300px;
    background: linear-gradient(135deg, #4b62ff, #7d45ff);
    border-radius: 40px;
    transform: translateY(-43%) rotate(30deg);
    z-index: 2;
    opacity: 0.95;
}

/* ENSURE CONTENT STAYS ABOVE SHAPE */
.bg-white,
.stat-icon,
.divider-line {
    position: relative;
    z-index: 2;
}

/* RESPONSIVE FIXES */
@media(max-width: 992px) {
    .shape-right {
        display: none;
    }
}
/* Stats Table Custom Styles */
        .stats-table {
            border-collapse: separate;
            width: 100%;
            background: none;
        }
        .stats-table td {
            border-left: 1px solid #dee2e6;
            border-top: 1px solid #dee2e6;
            border-right: none;
            border-bottom: none;
            background: none;
            padding: 2em;
            vertical-align: middle;
            transition: background 0.2s, color 0.2s;
        }
        .stats-table tr td:first-child {
            border-left: none;
        }
        .stats-table tr:first-child td {
            border-top: none;
        }
        .stats-table tr {
            background: none;
        }
       
        .stat-flex {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        .stat-icon-bg {
            background: #f5f4ff;
            border-radius: 1.5rem;
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 0.5rem;
        }
        .stat-icon-bg i {
            color: #7c3aed;
            font-size: 2rem;
        }
        .stat-info h3 {
            color: #7c3aed;
            font-weight: 600;
            font-size: 2.2rem;
            margin: 0;
        }
        .stat-info p {
            color: #555;
            font-size: 1.2rem;
            margin: 0;
            font-weight: 500;
        }
        @media (max-width: 767px) {
            .stats-table td { display: block; width: 100%; border:0; }
            .stat-flex { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
            .stat-icon-bg { margin-bottom: 0.5rem; }
        }

/* Portfolio Card */


/* Smaller logo on narrow screens to avoid overlap with content */
@media (max-width: 768px) {
    .logo {
        height: 48px;
    }
}
/* Portfolio Section Background */

.portfolio-section {
    position: relative;
    padding: 80px 0;
    background: #ffffff;
    z-index: 1;
}

.portfolio-section::before { display: none; }

/* Keep container content above overlay */
.portfolio-section .container {
    position: relative;
    z-index: 2;
}

.portfolio-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 9 / 10;
    width:100%;
}

/* Image */
.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: inherit;
    transition: transform .5s ease;
}

/* Zoom effect */
.portfolio-card:hover .portfolio-img {
    transform: scale(1.1);
}

/* Dark overlay */
.portfolio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 25px;
    color: #fff;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.75) 100%);
    z-index: 3;
}

.portfolio-content h4 {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Icon above title */
.portfolio-icon {
    width: 55px;
    margin-bottom: 12px;
}

/* --- Blue Animated Shapes (hover) --- */
.portfolio-card::before,
.portfolio-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 28px;
    transform: scale(0.1) rotate(25deg);
    transition: transform .45s ease;
    z-index: 1; /* behind image */
}

/* Top-left shape */
.portfolio-card::before {
    top: -40px;
    left: -40px;
    background: linear-gradient(
        135deg,
        rgba(78, 84, 255, 0.75),
        rgba(126, 68, 255, 0.75)
    );
    opacity: 0;
}

/* Bottom-right shape */
.portfolio-card::after {
    bottom: -40px;
    right: -40px;
    background: linear-gradient(
        135deg,
        rgba(78, 84, 255, 0.75),
        rgba(126, 68, 255, 0.75)
    );
    transition-delay: 0.05s;
    opacity: 0;
}

/* Hover animation */
.portfolio-card:hover::before,
.portfolio-card:hover::after {
    transform: scale(1) rotate(25deg);
    opacity: 1;
}
.portfolio-content p {
    font-size: 15px;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(15px);
    transition: all .45s ease;
    max-height: 0;
    overflow: hidden;
    margin: 0;
}

.portfolio-card:hover .portfolio-content p {
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
    margin-top: 10px;
}
.portfolio-card i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #fff;
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

.portfolio-card:hover i{
    opacity: 1;
}
.modal-portfolio-img{
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}
.modal {
    z-index: 6000;
}
.modal-backdrop {
    z-index: 5990;
}
/* Contact Us CSS */

        .contact-section {
            position: relative;
        }
.pagination {
    gap: 6px;
}
.pagination .page-link {
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    color: #111;
    padding: 8px 12px;
    min-width: 42px;
    text-align: center;
}
.pagination .page-link:hover {
    color: #4b62ff;
    border-color: #cbd5e1;
    background-color: #f8fafc;
}
.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #7d45ff, #4b62ff);
    border-color: transparent;
    color: #fff;
}
.pagination .page-item.disabled .page-link {
    color: #9ca3af;
    background-color: #f9fafb;
    border-color: #e5e7eb;
}
.page-link:focus {
    box-shadow: none;
}
/* Portfolio detail gallery */
.portfolio-gallery .gallery-item{
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.portfolio-gallery .gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.portfolio-gallery .gallery-link:hover .gallery-item{ transform: translateY(-2px); transition: transform .2s ease; }

        /* World Map BG */
        .contact-section::before {
            content: "";
            position: absolute;
            left: 50%;
            transform: translate(-50%);
            bottom: -10%;
            width: 650px;
            height: 450px;
            background: url(../image/apporin-bg.png) no-repeat;
            background-size: contain;
            opacity: 0.6;
            pointer-events: none;
         
        }

        .contact-left h1 {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            color: #0f182e;
        }

        .contact-left p {
            color: #5b6375;
            font-size: 17px;
        }

        .contact-info h6 {
            font-weight: 600;
            color: #3b4460;
        }

        .contact-info a {
            font-size: 20px;
            text-decoration: none;
            color: #0f182e;
        }
        .contact-info .address-text {
            font-size: 20px;
            color: #0f182e;
        }

        /* Form Container */
        .form-box {
            background: #fff;
            padding: 45px;
            border-radius: 30px;
            box-shadow: 0px 20px 60px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
        }

        .form-box::after {
            content: "";
            position: absolute;
            right: -90px;
            bottom: -90px;
            width: 260px;
            height: 260px;
            background: linear-gradient(135deg, #8a2eff, #1d68ff);
            opacity: 0.12;
            border-radius: 40px;
            transform: rotate(45deg);
        }

        /* Inputs */
        .form-control,
        .form-select {
            height: 55px;
            border-radius: 12px;
            border: 1px solid #e7e7e7;
            transition: 0.3s ease;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: #8a2eff;
            box-shadow: 0 0 0 4px rgba(138,46,255,0.15);
        }

        textarea.form-control {
            height: 150px;
        }

        /* Button */
        .submit-btn {
            background: linear-gradient(135deg, #8a2eff, #1d68ff);
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 600;
            transition: 0.3s ease-in-out;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            opacity: 0.9;
        }

        /* RESPONSIVE */
        @media (max-width: 992px) {
            .contact-left h1 {
                font-size: 38px;
            }
        }

        @media (max-width: 768px) {
            .contact-section::before {
                width: 400px;
                top: 200px;
            }
            .form-box {
                padding: 25px;
            }
            .contact-left h1 {
                font-size: 32px;
            }
        }
    /* Page Breadcrumb Section CSS */
  
        /* HERO BACKGROUND */
        .hero-section {
            position: relative;
            height: 65vh;
            background: url('../image/breacumb-bg2.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        /* FULL DARK OVERLAY */
        .hero-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(10, 15, 40, 0.78);
            z-index: 1;
        }

        /* TOP-LEFT GRADIENT SHAPE (main) */
        .shape-1 {
            position: absolute;
            top: -20px;
            /* left: -100px; */
            width: 100%;
            height: 100%;
            /* background: linear-gradient(135deg, #6a11ff, #6f00ff); */
            background: url('../image/breacumb-about.png') no-repeat;
            opacity: 0.85;
            /* clip-path: polygon(0 0, 100% 0, 40% 70%, 0 40%); */
            z-index: 2;
            filter: blur(1px);
        }

        /* SECOND GRADIENT SHAPE (lighter + reduced opacity) */
        .shape-2 {
            position: absolute;
            bottom: -60px;
            right: -80px;
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #8a2eff, #1d68ff);
            opacity: 0.25; /* LOWER OPACITY */
            clip-path: polygon(60% 0, 100% 30%, 70% 100%, 0 100%);
            z-index: 2;
            filter: blur(2px);
        }

        /* HERO TEXT CONTENT */
        .hero-content {
            position: relative;
            z-index: 5;
            text-align: center;
            color: #fff;
        }

        .breadcrumb-custom {
            font-size: 15px;
            color: #ddd;
            letter-spacing: 1px;
        }

        .breadcrumb-custom span {
            color: #fff;
            font-weight: 600;
        }

        .hero-title {
            font-size: 58px;
            font-weight: 700;
            margin-top: 10px;
        }

        @media (max-width: 768px) {
            .hero-section { height: 50vh; }
            .hero-title { font-size: 34px; }
        }
  
/* FAQ Section CSS */
    .faq-wrapper {
        max-width: 100%;
    }

    .faq-item {
        background: #ffffff;
        border-radius: 20px;
        padding: 25px 28px;
        margin-bottom: 18px;
        border: 1px solid #f0f0f0;
        box-shadow: 0 2px 12px rgba(0,0,0,0.05);
        transition: 0.3s ease;
    }

    .faq-item.active {
        border-color: #ececec;
    }

    .faq-question {
        width: 100%;
        background: none;
        border: none;
        padding: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        font-size: 22px;
        font-weight: 600;
        color: #1e1e1e;
        cursor: pointer;
    }

    .faq-answer {
        margin-top: 15px;
        display: none;
        font-size: 18px;
        color: #616874;
        padding-right: 40px;
        line-height: 1.6;
    }

    .faq-question .icon {
        font-size: 28px;
        font-weight: 600;
        color: #1e2a39;
        transition: 0.3s ease;
        width: 28px;
        text-align: center;
    }
