/* Import THICCCBOI Light font */
@font-face {
        font-family: "THICCCBOI Light";
        src: url("https://db.onlinewebfonts.com/t/84c91d2b8ada9a10a4e5ff748888f658.eot");
        src: url("https://db.onlinewebfonts.com/t/84c91d2b8ada9a10a4e5ff748888f658.eot?#iefix")format("embedded-opentype"),
                url("https://db.onlinewebfonts.com/t/84c91d2b8ada9a10a4e5ff748888f658.woff2")format("woff2"),
                url("https://db.onlinewebfonts.com/t/84c91d2b8ada9a10a4e5ff748888f658.woff")format("woff"),
                url("https://db.onlinewebfonts.com/t/84c91d2b8ada9a10a4e5ff748888f658.ttf")format("truetype"),
                url("https://db.onlinewebfonts.com/t/84c91d2b8ada9a10a4e5ff748888f658.svg#THICCCBOI Light")format("svg");
}

body {
          font-family: "THICCCBOI light", sans-serif;
        background-color: #F6F8FB;
        padding: 20px;
        padding-bottom:0;
        margin: 0;
        min-height: 100vh;
        box-sizing: border-box;
        overflow-x: hidden;
}

/* Ensure text visibility */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
span,
input,
li {
     font-family: "THICCCBOI SemBd", sans-serif !important;
   font-weight: 500 !important;
        letter-spacing: 0.02em;
}
  .media-col {
  max-height: 500px;        /* adjust as needed */
  overflow-y: auto;
  
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.media-col::-webkit-scrollbar {
  display: none;
}

.video-placeholder {
  width: 100%;
  height: auto;
}

.video-thumbnail {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Custom Fade In Animation */
@keyframes fadeIn {
        from {
                opacity: 0;
                transform: translateY(20px);
        }

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

.animate-fade-in {
        opacity: 0;
        animation: fadeIn 0.8s ease-out forwards;
}

.delay-100 {
        animation-delay: 0.1s;
}

.delay-200 {
        animation-delay: 0.2s;
}

.delay-300 {
        animation-delay: 0.3s;
}

.delay-400 {
        animation-delay: 0.4s;
}

.delay-500 {
        animation-delay: 0.5s;
}

/* Section Base */
.construction-variation-section {
        font-family: 'THICCCBOI Light', sans-serif !important;
        /* Reveal Animation Base State */
        opacity: 0 !important;
        transform: translateY(40px) !important;
        transition: opacity 0.8s ease-out, transform 0.8s ease-out !important;
}

.construction-variation-section.is-visible {
        opacity: 1 !important;
        transform: translateY(0) ;
        padding-bottom:50px;
}

.container-custom {
        max-width: 1920px;
        padding-left:50px ;
        padding-right: 50px;
        margin: 0 auto;

}

/* Header */
.section-header {
        text-align: center;
        margin-bottom: 60px;
}

.section-header h2 {
        font-family: 'THICCCBOI', sans-serif;
        /* Ensuring correct font */
        font-size: 48px;
        font-weight: 500;
        /* Changed from 700 to 500 (normal/medium) */
        color: #111827;
        line-height: 1.2;
        margin: 0;
}

@media (max-width: 768px) {
        .section-header h2 {
                font-size: 32px;
        }
}

/* Tabs Navigation */
.tabs-nav {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        /* 4 columns on desktop */
        border-bottom: 2px solid #E5E7EB;
        margin-bottom: 48px;
        gap: 0;
        /* Remove gap to ensure borders connect */
}

.tab-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 20px 10px;
        background: none;
        border: none;
        border-bottom: 2px solid transparent;
        margin-bottom: -2px;
        /* Overlap the main border */
        font-family: 'THICCCBOI', sans-serif;
        font-size: 18px;
        font-weight: 500;
        /* Changed from 600 to 500 */
        color: #9F9F9F;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        width: 100%;
        /* Ensure full width in grid cell */
}

.tab-btn i {
        width: 28px;
        height: 28px;
}

.tab-btn:hover {
        color: #374151;
}
/* Active State */
.tab-btn.active {
        border-bottom-color: #0085FE;
        color: #0085FE;
}

/* Responsive Tabs Layout */
@media (max-width: 992px) {
        .tabs-nav {
                grid-template-columns: repeat(2, 1fr);
                /* 2 columns on tablet */
                border-bottom: none;
                /* Remove main bottom border on smaller screens if wrapping */
                gap: 15px;
                /* Add spacing between buttons when stacked/grid */
        }

        .tab-btn {
                border-bottom: 2px solid #E5E7EB;
                /* Default border for each item */
                margin-bottom: 0;
                justify-content: center;
        }

        .tab-btn.active {
                border-bottom-color: #0085FE;
        }
}

@media (max-width: 640px) {
        .tabs-nav {
                grid-template-columns: 1fr;
                /* 1 column on mobile */
                gap: 10px;
                margin-bottom: 30px;
        }

        .tab-btn {
                width: 100%;
                padding: 15px;
                font-size: 16px;
                border-bottom: 2px solid #E5E7EB;
                /* Full width border */
        }

        .tab-btn.active {
                border-bottom-color: #0085FE;
        }
}

/* Small mobile devices (320px - 400px) */
@media (max-width: 400px) {
        .section-header h2 {
                font-size: 24px;
                /* Reduced main heading size */
        }

        .text-col h2 {
                font-size: 20px !important;
                /* Force reduction */
                margin-bottom: 12px !important;
        }

        .text-col p {
                font-size: 14px !important;
                /* Force reduction */
                line-height: 1.5 !important;
                margin-bottom: 20px !important;
        }

        .tab-btn {
                font-size: 14px;
                padding: 12px;
        }
}

/* Tabs Body & Animation */
.tabs-body {
        position: relative;
        min-height: 450px;
}

.tab-content {
        display: none;
        padding: 60px;
        border-radius: 20px;
        color: #ffffff;
        /* Animation Initial State */
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.tab-content.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
}

.content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
}

/* Responsive Padding Management */
@media (max-width: 1300px) {
.container-custom{
        padding-left:0;
        padding-right:0;
}
}
@media (max-width: 992px) {
        .tab-content {
                padding: 40px 30px;
        }

        .content-grid {
                grid-template-columns: 1fr;
                gap: 40px;
        }
}

@media (max-width: 640px) {
        .tab-content {
                padding: 30px 20px;
                border-radius: 15px;
        }

        .section-header {
                margin-bottom: 30px;
        }

        .text-col h2 {
                font-size: 24px;
                /* Default mobile size */
        }

        .text-col p {
                font-size: 16px;
                /* Default mobile size */
        }
}

/* Content Text Styling */
.text-col h2 {
        font-family: 'THICCCBOI', sans-serif;
        font-size: 36px;
        font-weight: 500;
        /* Changed to 500 */
        margin-bottom: 20px;
        line-height: 1.3;
}

.text-col p {
        font-family: 'THICCCBOI Light', sans-serif;
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 30px;
        opacity: 0.9;
}

/* Learn More Button - Hero Style Replicated */
.learn-more-btn {
        cursor: pointer;
        /* Styles are handled by Tailwind classes in HTML, keeping base reset here if needed */
        border: none;
}

.learn-more-btn i {
        width: 20px;
        height: 20px;
}

/* Video/Media Placeholder */
.media-col {
        width: 100%;
}

.video-placeholder {
        width: 100%;
        aspect-ratio: 16/9;
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
            border-radius: 10px;
    border: 4.33px solid rgba(255, 255, 255, 1);
}

.video-placeholder:hover {
        background-color: rgba(255, 255, 255, 0.15);
}

.play-icon {
        width: 64px;
        height: 64px;
        background-color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
}

.video-placeholder:hover .play-icon {
        transform: scale(1.1);
}

.play-icon i {
        width: 24px;
        height: 24px;
        fill: #0085FE;
        color: #0085FE;
        margin-left: 4px;
}

.video-placeholder span {
        font-family: 'THICCCBOI', sans-serif;
        font-weight: 500;
        font-size: 16px;
}
/* Unique Namespace for Variation Workflow Section */

/* Section Base */
.variation-workflow-section {
    padding: 100px 0px;
    font-family: 'THICCCBOI Light', sans-serif;
    opacity: 0; /* Base state for reveal */
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.variation-workflow-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.variation-container-custom {
    max-width: 100%;
    padding-left:50px ;
    padding-right: 50px;
    margin: 0 auto;
}

/* Header Styling */
.variation-workflow-header {
    text-align: center;
    margin-bottom: 50px;
}

.variation-workflow-header h2 {
    font-family: 'THICCCBOI', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 24px;
}

.variation-workflow-header .variation-subtitle {
    font-family: 'THICCCBOI Light', sans-serif;
    font-size: 18px;
    color: #4B5563;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .variation-workflow-header h2 {
        font-size: 28px;
    }
    .variation-workflow-header .variation-subtitle {
        font-size: 16px;
    }
}

/* Workflow Card Styling */
.variation-workflow-card {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 21px 61px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    min-height: 300px;
    align-content: center;
    /* Animation defaults */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When parent is visible, children animate */
.variation-workflow-section.is-visible .variation-workflow-card {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for second card */
.variation-workflow-section.is-visible .variation-main-contractor-card {
    transition-delay: 0.2s;
}

.variation-card-spacer {
    height: 40px; /* Spacing between boxes */
}

/* Labels */
.variation-card-label {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 9999px; /* Fully rounded/pill shape */
    font-family: 'THICCCBOI', sans-serif;
    font-weight: 500; /* Not too bold */
    font-size: 14px;
    margin-bottom: 20px;
}

.variation-sub-label {
    color: rgba(14, 47, 165, 1);
    background: linear-gradient(90deg, rgba(45, 111, 247, 0.12) 0%, rgba(104, 58, 193, 0.12) 100%);
}

.variation-main-label {
    /* Using a distinct style for Main Contractor for differentiation */
    color: #00695C; 
    background: linear-gradient(90deg, rgba(0, 150, 136, 0.12) 0%, rgba(77, 182, 172, 0.12) 100%);
}

/* Card Content */
.variation-card-heading {
    font-family: 'THICCCBOI', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.4;
    text-align: left;
}

@media (max-width: 768px) {
    .variation-card-heading {
        font-size: 20px;
    }
}

/* Features Grid (3 Columns) */
.variation-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .variation-features-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
        gap: 24px;
    }
}

.variation-feature-item {
    display: flex;
    align-items: flex-start; /* Align icon top with text */
    gap: 12px;
}

.variation-icon-box {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure Lucide icons are visible and sized correctly */
.variation-icon-box svg {
    width: 20px;
    height: 20px;
    color: #0085FE; /* Theme color */
    stroke-width: 2;
}

.variation-feature-item p {
    font-family: 'THICCCBOI Light', sans-serif;
    font-size: 15px;
    color: #374151;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    text-align: left;
}

/* Section Base */
.inter-comm-section {
    /* Removed padding and background-color as requested */
    font-family: 'THICCCBOI Light', sans-serif;
    
    /* Reveal Animation Base State */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.inter-comm-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Note: .container-custom style removed as requested (assumed globally defined) */

/* Header */
.inter-comm-header {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 30px; /* Added padding-top to compensate for section padding removal if needed for spacing from previous section */
}

.inter-comm-header h2 {
    font-family: 'THICCCBOI', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

@media (max-width: 768px) {
    .inter-comm-header h2 {
        font-size: 28px;
    }
}

/* Gradient Box */
.comm-gradient-box {
    /* Gradient applied as background-image to avoid white overlay issue if intended as solid bg */
    background-image: linear-gradient(90deg, #1F0159 0%, #001541 100%);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px; /* Added margin-bottom to compensate for section padding removal */
    
    /* Animation for the box itself */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.inter-comm-section.is-visible .comm-gradient-box {
    opacity: 1;
    transform: translateY(0);
}

/* Grid Layout */
.comm-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Key for staggering vertical alignment */
    gap: 60px; /* Increased gap to prevent overlap with center connector */
    position: relative;
}

/* Columns */
.comm-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Ensure column can grow but respects flex basics */
    min-width: 0; 
    z-index: 5; /* Ensure columns are above background but check relative to connector */
}

/* Left Column Spacing - Pushes it down */
.comm-col-left {
    margin-top: 60px; /* Adjust this value for desired stagger amount */
}

/* Right Column - Aligns to top (default) */
.comm-col-right {
    margin-top: 0;
}

/* Headings inside box */
.comm-col-heading {
    font-family: 'THICCCBOI', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

/* Video Wrapper & Styling */
.comm-video-wrapper {
    width: 100%;
    /* Removed fixed max-width or set it very high to fill the column */
    max-width: 100%; 
}
.variation-feature-item .wb-icon-wrapper img{
width: 30px !important;
}
.comm-video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    /* background-color: rgba(255, 255, 255, 0.1); */
    background-color: #000000;
    border-radius: 10px; /* Slightly rounded corners for inner video */
    
    /* Requested Border & Shadow */
    border: 4.33px solid rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 44.2px 0px rgba(0, 0, 0, 0.25);
    
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default; /* Changed cursor from pointer */
    /* Removed hover transition */
}

/* Removed hover transform: scale(1.02) */

/* Play Icon */
.comm-play-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    cursor: pointer; /* Keep pointer on play button if interactive */
}

.comm-play-icon i {
    color: white;
    fill: white;
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

/* Center Connector */
.comm-center-connector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8); /* Added scale(0.8) to reduce size */
    z-index: 10;
    
    /* Adjust based on the stagger. Since left is lower, center might need visual tweaking */
    margin-top: 30px; 
    
    /* Ensure it doesn't shrink */
    flex-shrink: 0;
    /* Ensure width is set to avoid layout jumps */
    width: 80px; 
    display: flex;
    justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
    .comm-grid {
        flex-direction: column;
        align-items: stretch; /* Stretch to fill width on mobile */
        gap: 40px; /* Increased vertical gap between elements on mobile to separate videos from connector */
    }
    
    .comm-col-left {
        margin-top: 0; /* Remove stagger on mobile/tablet vertical stack */
    }
    
    .comm-center-connector {
        position: static;
        transform: rotate(90deg) scale(0.6); /* Rotate arrow to point down and scale down further for mobile */
        margin: 0 auto; /* Removed negative margin to ensure separation */
        height: 60px; /* Limit height explicitly */
        display: flex;
        align-items: center;
        margin-top: -10px; /* Slight negative margin for visual balance, but less than before */
        margin-bottom: -10px;
    }
    
    .comm-gradient-box {
        padding: 30px;
    }
    
    .comm-video-wrapper {
        max-width: 100%; /* Ensure full width on mobile */
    }
}

/* Section Base */
.sinq-mobile-section {
    /* Removed padding as requested */
    padding: 0; 
    background-color: transparent; 
    font-family: 'THICCCBOI Light', sans-serif;
    margin: 100px 0; /* Adding margin instead of padding to keep spacing between sections */
}

/* Responsive margin */
@media (max-width: 992px) {
    .sinq-mobile-section {
        margin: 60px 0;
    }
}

/* Note: .container-custom is assumed to be defined globally as per previous instructions */

/* Main Box Styling */
.sinq-main-box {
    background: rgba(11, 23, 57, 1);
    border: 5px solid rgba(255, 255, 255, 1);
    box-shadow: 0px 42px 60px 0px rgba(0, 0, 0, 0.13);
    border-radius: 20px;
    padding: 30px 30px 0 30px; /* Removed bottom padding to let mobile sit flush */
    overflow: hidden; /* Keeps animations contained */
    position: relative;
}

/* Grid Layout */
.sinq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Left Column */
.sinq-col-left {
    padding: 20px 20px 50px 20px; /* Add bottom padding here since main box removed it */
}

.sinq-heading {
    font-family: 'THICCCBOI', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: rgba(38, 81, 234, 1); /* Updated color */
    margin-bottom: 24px;
    line-height: 1.2;
}

.sinq-text {
    font-family: 'THICCCBOI Light', sans-serif;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Button Styling */
.sinq-btn {
    cursor: pointer;
    border: none; 
}

.sinq-btn i {
    width: 20px;
    height: 20px;
}

/* Right Column & Images */
.sinq-col-right {
    position: relative;
    height: 100%;
    min-height: 400px; /* Ensure space for images */
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Align mobile to bottom of container visually */
}

.sinq-images-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: flex-end;
    align-items: center; /* Center items horizontally */
}

/* Images */
.mobile-img {
    max-width: 80%; /* Reduced size */
    height: auto;
    max-height: 500px; /* Limit height */
    display: block;
    margin: 0 auto;
    /* Initial state for slide-up handled by JS/CSS class */
    transform-origin: bottom center;
}

.logo-img {
    width: 120px; /* Adjust size */
    height: auto;
    display: block;
    margin: 0 auto;
}

.card-img {
    width: 180px; /* Adjust size */
    height: auto;
}

/* Positioning */
.sinq-img-mobile {
    position: relative;
    z-index: 5;
    /* Slide Up Animation Initial State */
    transform: translateY(100%); /* Start completely off-screen bottom or pushed down */
    opacity: 0;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease-out; /* Slowed down animation */
    bottom: -5px; /* Slight offset to ensure it covers bottom border radius if needed, or sits flush */
    width: 100%;
    display: flex;
    justify-content: center;
}

.sinq-img-logo {
    /* Removed absolute positioning */
    position: relative; 
    z-index: 6;
    /* Fade In Initial State */
    opacity: 0;
    transition: opacity 0.8s ease-out; /* Slightly slower fade */
    margin-bottom: 20px; /* Space between logo and mobile top */
    /* Ensure it takes space correctly in flex layout */
}

.sinq-img-card {
    position: absolute;
    top: 150px; /* Increased top spacing */
    left: 15%; /* Adjust to overlap mobile left side */
    z-index: 7;
    /* Fade In Initial State */
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

/* Left Column Animation Initial State */
.sinq-observe-fade {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

/* Animation Trigger Classes */
.sinq-animate-fade-in {
    opacity: 1 !important;
}

.sinq-animate-slide-up {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* Responsive */
@media (max-width: 992px) {
    .sinq-grid {
        grid-template-columns: 1fr;
        gap: 30px; /* Reduced gap */
        text-align: center;
    }

    .sinq-col-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        padding-top:20px;
    }

    .sinq-heading {
        font-size: 32px;
    }

    .sinq-col-right {
        min-height: 300px;
        overflow: visible; /* Allow elements to be seen */
    }
    
    .mobile-img {
        max-width: 60%;
    }
    
    /* Hide card image on tablet/mobile */
    .sinq-img-card {
        display: none;
    }
}

@media (max-width: 640px) {
    .sinq-main-box {
        padding: 20px 20px 0 20px;
    }

    .sinq-heading {
        font-size: 28px;
    }
    
    .sinq-text {
        font-size: 16px;
    }
    
    .sinq-col-right {
        min-height: 250px;
        margin-top: 20px; /* Reduced margin */
    }
    
    .mobile-img {
        max-width: 100%; /* Increased size for mobile */
    }
    
    .sinq-img-logo {
        width: 100px;
        margin-bottom: 10px;
    }
}


/* Section Base */
.works-best-section {
    font-family: 'THICCCBOI Light', sans-serif;
    
    /* Reveal Animation Base State */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.works-best-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Note: .container-custom is assumed to be defined globally */

/* Header */
.wb-header {
    text-align: center;
    margin-bottom: 30px;
}

.wb-header h2 {
    font-family: 'THICCCBOI', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

@media (max-width: 768px) {
    .wb-header h2 {
        font-size: 32px;
    }
}

/* Grid System */
.wb-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wb-row {
    display: flex;
    gap: 30px;
    width: 100%;
}

/* Card Widths */
.wb-card-40 {
    width: 40%;
}

.wb-card-60 {
    width: 60%;
}

/* Card Base Styling */
.wb-card {
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    /* Card Animation Base */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Specific Background Colors */
.wb-bg-purple-light {
    background-color: rgba(223, 171, 255, 0.25);
}

.wb-bg-blue-light {
    background-color: rgba(0, 133, 255, 0.14);
}

.wb-bg-blue-medium {
    background-color: rgba(141, 171, 255, 0.32);
}

.wb-bg-purple-dark {
    background-color: rgba(141, 53, 255, 0.14);
}

/* Content Styling */
.wb-card-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.wb-icon-wrapper {
    margin-bottom: 30px;
}

.wb-icon-wrapper img {
    width: 60px;
    
    display: block;
}

.wb-content p {
    font-family: 'THICCCBOI Light', sans-serif;
    font-size: 18px;
    color: #1F2937;
    line-height: 1.6;
    margin: 0;
}

.wb-bold {
    font-family: 'THICCCBOI', sans-serif;
    font-weight: 700;
    font-size: 20px; /* Slightly larger as requested */
    color: #000000;
}

.wb-spacer {
    height: 20px;
}

/* Animation Trigger Classes */
.works-best-section.is-visible .wb-reveal-item {
    opacity: 1;
    transform: translateY(0);
}

/* Delays for staggered effect */
.works-best-section.is-visible .wb-delay-100 {
    transition-delay: 0.1s;
}

/* Responsive */
@media (max-width: 992px) {
    .wb-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .wb-card-40, .wb-card-60 {
        width: 100%;
    }
    
    .wb-card {
        padding: 30px;
    }
    
    .wb-content p {
        font-size: 16px;
    }
    
    .wb-bold {
        font-size: 18px;
    }
    .wb-grid{
        gap: 20px;
    }
}

@media (max-width: 640px) {
    
    
    .wb-header h2 {
        font-size: 28px;
    }
}
/* Section Base */
.programmes-section {
    padding: 0; /* As requested: outside 0 padding */
    margin: 100px 0; /* Updated: Consistent top/bottom spacing like other sections */
    font-family: 'THICCCBOI Light', sans-serif;
    
    /* Reveal Animation Base State */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Responsive margin for section */
@media (max-width: 992px) {
    .programmes-section {
        margin: 60px 0;
    }
}

.programmes-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Note: .container-custom is assumed to be defined globally */

/* Main Box Styling */
.prog-main-box {
    background: linear-gradient(270deg, #00133B 0%, #170043 100%);
    border-radius: 20px;
    padding: 50px; 
    overflow: hidden;
    position: relative;
}

/* Grid Layout */
.prog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50/50 split */
    gap: 60px;
    align-items: center;
}

/* Left Column */
.prog-col-left {
    padding: 20px;
}

.prog-heading {
    font-family: 'THICCCBOI', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: rgba(38, 81, 234, 1);
    margin-bottom: 24px;
    line-height: 1.2;
}

.prog-text {
    font-family: 'THICCCBOI Light', sans-serif;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Button Styling */
.prog-btn {
    cursor: pointer;
    border: none; 
}

.prog-btn i {
    width: 20px;
    height: 20px;
}

/* Right Column & Image */
.prog-col-right {
    display: flex;
    justify-content: end;
    align-items: center;
}

.prog-img-wrapper {
    width: 100%;
}

.prog-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .prog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .prog-col-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Left aligned text */
        text-align: left; 
        padding: 0; /* Updated: Removed padding as requested for mobile/tablet */
        margin-bottom: 20px; /* Added margin for spacing between content and image */
    }

    .prog-heading {
        font-size: 32px;
    }
    
    .prog-img-wrapper {
        margin: 0 auto;
    }
    
    /* Adjust main box padding for tablet */
    .prog-main-box {
        padding: 40px;
    }
}

@media (max-width: 640px) {
    .prog-heading {
        font-size: 28px;
    }
    
    .prog-text {
        font-size: 16px;
    }
    
    .prog-main-box {
        padding: 30px 20px;
    }
    
    /* Ensure padding is removed on smallest screens too just in case */
    .prog-col-left {
        padding: 0;
    }
}

/* Section Base */
.contract-value-section {
    padding: 0;
    margin: 100px 0;
    font-family: 'THICCCBOI Light', sans-serif;
    
    /* Reveal Animation Base State */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.contract-value-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive margin */
@media (max-width: 992px) {
    .contract-value-section {
        margin: 60px 0;
    }
}

/* Main Box Styling */
.contract-main-box {
    background: linear-gradient(90deg, #001E5D 0%, #1F005A 100%);
    border-radius: 20px;
    padding: 50px;
    overflow: visible; /* Changed to visible to allow hover label to pop slightly if needed, or stick to hidden if contained */
    position: relative;
}

/* Grid Layout */
.contract-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50/50 split */
    gap: 60px;
    align-items: center;
}

/* Right Column (Content) */
.contract-col-right {
    padding: 20px;
}

.contract-heading {
    font-family: 'THICCCBOI', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: rgba(38, 81, 234, 1);
    margin-bottom: 24px;
    line-height: 1.2;
}

.contract-text {
    font-family: 'THICCCBOI Light', sans-serif;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Button Styling */
.contract-btn {
    cursor: pointer;
    border: none; 
}

.contract-btn i {
    width: 20px;
    height: 20px;
}

/* Left Column & Image Wrapper */
.contract-col-left {
    display: flex;
    justify-content: start;
    align-items: center;
    position: relative;
}

.contract-img-wrapper {
    width: 100%;
    position: relative; /* Context for absolute label */
}

.contract-main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Hover Effect for Label */
.contract-hover-label {
    position: absolute;
    top: 50%;
    right: -40px; /* Positioned to the right side, extending out slightly */
    transform: translateY(-50%) translateX(20px); /* Start slightly offset */
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    pointer-events: none; /* Let clicks pass through if needed */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.contract-hover-label img {
    max-width: 180px; /* Adjust size of the SVG label */
    height: auto;
    display: block;
}

/* Hover State */
.contract-img-wrapper:hover .contract-hover-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
    .contract-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left; /* Keep left alignment for mobile as per previous section logic */
    }

    /* Change order: Image on top, Content below for mobile */
    .contract-col-left {
        order: 1; /* Image first */
        margin-bottom: 20px;
    }
    
    .contract-col-right {
        order: 2; /* Content second */
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0; /* Remove padding as per previous section rules */
    }

    .contract-heading {
        font-size: 32px;
    }
    
    .contract-img-wrapper {
        margin: 0 auto;
    }
    
    /* Hide label on tablet/mobile */
    .contract-hover-label {
        display: none !important;
    }
    
    .contract-main-box {
        padding: 40px;
    }
}

@media (max-width: 640px) {
    .contract-heading {
        font-size: 28px;
    }
    
    .contract-text {
        font-size: 16px;
    }
    
    .contract-main-box {
        padding: 30px 20px;
    }
}
/* Footer Base */
.main-footer {
    background: linear-gradient(90deg, #001540 0%, #1B004F 100%);
    border-radius: 20px 20px 0 0; /* Top-left, Top-right radius */
    padding: 100px 20px 100px;
    font-family: 'THICCCBOI Light', sans-serif;
    color: #ffffff;
    position: relative;
    overflow: hidden; /* To clip the SVG background */
    margin-top: 0;
}
.footer-bg-svg svg{
    width: 80%;
}
/* Background SVG */
.footer-bg-svg {
    position: absolute;
    top: 50%;
    left: 50px; /* Left side 50px offset */
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
}

/* .footer-container removed as per request to use .container-custom */
/* Ensure .container-custom positions correctly */
.main-footer .container-custom {
    position: relative;
    z-index: 1; /* Ensure content is above SVG */
}

/* Main Grid Layout */
.footer-content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Column 1: Logo (40%) */
.footer-col-1 {
    flex: 0 0 40%;
    max-width: 40%;
}

.footer-logo {
    height: 60px; /* Increased size from 40px */
    width: auto;
    display: block;
}

/* Column 2: Links (60%) */
.footer-col-2 {
    flex: 0 0 60%;
    max-width: 60%;
    flex: 1; 
}

/* Inner Links Grid (3 Columns) */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Headings */
.footer-heading {
    font-family: 'THICCCBOI', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    opacity: 0.9;
}

/* Links List */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-links-list li a:hover {
    opacity: 1;
    color: #0085FE;
}

/* Social Icons */
.footer-social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-link:hover {
    background-color: #0085FE;
    transform: translateY(-2px);
}

.social-link i {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-content-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-col-1, 
    .footer-col-2 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Tablet: 2x2 Layout for Links Grid (or rather, wrapping) */
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        gap: 40px;
    }

    /* Left align on tablet as requested */
    .footer-col-1 {
        display: block; /* Default block for left align */
        justify-content: flex-start;
    }
    
    .footer-links-col {
        align-items: flex-start; /* Left align items */
        text-align: left;
    }
    
    .footer-social-icons {
        justify-content: flex-start; /* Left align social icons */
    }

    .footer-bg-svg {
        left: -100px;
        opacity: 0.5;
    }
}

@media (max-width: 640px) {
    .main-footer {
        padding: 60px 20px 30px;
    }

    /* Mobile: 1 Column Layout for Links */
    .footer-links-grid {
        grid-template-columns: 1fr; /* 1 column */
        gap: 30px;
    }
    
    /* Ensure left alignment persists on mobile */
    .footer-col-1 {
        display: block; 
        justify-content: flex-start;
        text-align: left;
    }
    
    .footer-links-col {
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-social-icons {
        justify-content: flex-start;
    }
}