/* ==========================================================================
   1. FONTS
   ========================================================================== */

/* 1.1 Import Custom Fonts */
@font-face {
    font-family: 'Bahnschrift';
    src: url('../fonts/Bahnschrift/BAHNSCHRIFT.ttf');
}

@font-face {
    font-family: 'barlowCondensed';
    src: url('../fonts/Barlow_Condensed/BarlowCondensed-Medium.ttf');
}

@font-face {
    font-family: 'Staatliches-Regular';
    src: url('../fonts/Staatliches/Staatliches-Regular.ttf');
}

@font-face {
    font-family: 'BigShouldersDisplay';
    src: url('../fonts/Big_Shoulders_Display/BigShouldersDisplay-VariableFont_wght.ttf');
}

@font-face {
    font-family: 'SourceSans3 VariableFon';
    src: url('../fonts/SourceSans3/SourceSans3-VariableFont_wght.ttf');
}

@font-face {
    font-family: 'SpaceMono';
    src: url('../fonts/Space_Mono/SpaceMono-Regular.ttf');
}

@font-face {
    font-family: "Sohne";
    src: url("../fonts/TestSohan/woff/sohne-book.woff") format('woff');
  }

  @font-face {
    font-family: "Sohne";
    src: url("../fonts/TestSohan/woff/sohne-semi-fat.woff") format('woff');
    font-weight: bold;
  }

/* 1.2 Font Family Utility Classes */
.fs-primary {
    font-family: 'Sohne'; /* Default Font */
}

.fs-secondary {
    font-family: 'barlowCondensed';
}

.fs-heading {
    font-family: 'Staatliches-Regular';
}

.fs-display {
    font-family: 'BigShouldersDisplay';
}

.fs-spacemono {
    font-family: 'SpaceMono';
}

/* ==========================================================================
   2. THEME VARIABLES & BODY DEFAULTS
   ========================================================================== */

/* 2.1 Default Theme (Light Mode) */
body {
    font-family: 'Sohne'; /* Default font from font families */
    cursor: auto !important;
    --primary-color: #ff9d00;
    --bg-gradient:linear-gradient(315deg, #ffc400, #ff6f00);
    /* Base theme colors */
    --main-bg-color: #e8e9ec;
    --panel-bg-color: rgba(255, 255, 255, 1);
    --panel-bg-mode: #d4d5d6;
    --border-color: #cdcdcd;
    --text-color: #1d1d1d;
    --text-color-in: #ffffff;
    --placeholder: #909090;
    --transparent-1: rgba(0, 0, 0, 0.04);
    --transparent-2: rgba(0, 0, 0, 0.2);
    --transparent-3: rgba(0, 0, 0, 0.3);
    --transparent-4: rgba(0, 0, 0, 0.4);
    --transparent-5: rgba(0, 0, 0, 0.5);
    --transparent-in-1: rgba(255, 255, 255, 0.1);
    --transparent-in-2: rgba(255, 255, 255, 0.2);
    --transparent-in-3: rgba(255, 255, 255, 0.3);
    --transparent-in-4: rgba(255, 255, 255, 0.4);
    --transparent-in-5: rgba(255, 255, 255, 0.5);
    --hover-bg-color: rgba(0, 0, 0, 0.05);
    --inverse: #ffffff;
}

/* 2.2 Dark Mode Theme */
body.mode-dark {
    --main-bg-color: #111827;
    --panel-bg-color: rgba(31, 41, 55, 1);
    --panel-bg-mode: #130000;
    --border-color: #606060;
    --placeholder: #e1e1e1;
    --text-color: #ffffff;
    --text-color-in: #1d1d1d;
    --transparent-1: rgba(255, 255, 255, 0.1);
    --transparent-2: rgba(255, 255, 255, 0.2);
    --transparent-3: rgba(255, 255, 255, 0.3);
    --transparent-4: rgba(255, 255, 255, 0.4);
    --transparent-5: rgba(255, 255, 255, 0.5);
    --transparent-in-1: rgba(0, 0, 0, 0.1);
    --transparent-in-2: rgba(0, 0, 0, 0.2);
    --transparent-in-3: rgba(0, 0, 0, 0.3);
    --transparent-in-4: rgba(0, 0, 0, 0.4);
    --transparent-in-5: rgba(0, 0, 0, 0.5);
    --hover-bg-color: rgba(255, 255, 255, 0.06);
    --inverse: #000000;
}

/* ==========================================================================
   2. Begin PaceJs
   ========================================================================== */
   /* -----------Pace CSS-& Loader Style------------ */
.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    z-index: 2000;
    position: fixed;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pace.pace-inactive {
    display: none;
}
.pace::after{
    content: "Please Wait";
    position: fixed;
    margin-top: 100px;

}
.pace .pace-progress {
    width: 48px;
    height: 48px;
    border: 3px dotted var(--primary-color);
    border-style: solid solid dotted dotted;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;

}
.pace .pace-progress::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px dotted #fff;
    border-style: solid solid dotted;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    animation: rotationBack 1s linear infinite;
    transform-origin: center center;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}
/* ==========================================================================
   2. End of PaceJS
   ========================================================================== */



   /* ==========================================================================
   3. GENERAL RESET & BASE STYLES
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==========================================================================
   4. SELECTION & SCROLLBAR STYLES
   ========================================================================== */

/* Selection style - Using theme color */
::selection {
    background-color: var(--primary-color); /* Theme color */
    color: white;
}

/* Custom scrollbar - Using theme color */
::-webkit-scrollbar {
    background-color: black;
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color); /* Theme color */
}

::-webkit-scrollbar-thumb:active {
    background-color: white;
}

/* ==========================================================================
   5. BACKGROUND EFFECTS & UTILITIES
   ========================================================================== */

.bg-hero {
    position: relative;
    /* background-image: url('../img/BACKBG.jpg'); */ /* Original commented out */
    background-image: radial-gradient(rgba(255, 188, 0, 0.15) 5%, transparent 60%); /* Using theme yellow */
    background-size: inherit;
    background-position: fixed;
    background-blend-mode: lighten;
    color: white; /* Assuming dark text needed adjustment if bg is light */
}

.bg-hero .content {
    position: relative;
    z-index: 2;
    padding: 50px;
}

.bg-fixed{
    background-size: inherit;
    background-position: fixed;
    color: white;
    background-color: #000;
}

/* Using theme yellow in radial gradients */
.bg-tl{
    background-image: radial-gradient(farthest-side at 0% 0%, rgba(255, 188, 0, 0.09), transparent);
}
.bg-tr{
    background-image: radial-gradient(farthest-side at 100% 0%, rgba(255, 188, 0, 0.09), transparent);
}
.bg-bl{
    background-image: radial-gradient(farthest-side at 0% 100%, rgba(255, 188, 0, 0.09), transparent);
}
.bg-br{
    background-image: radial-gradient(farthest-side at 100% 100%, rgba(255, 188, 0, 0.09), transparent);
}
.bg-ltl{
    background-image: radial-gradient(farthest-side at 0% 0%, rgba(255, 188, 0, 0.253), transparent);
}
.bg-ltr{
    background-image: radial-gradient(farthest-side at 100% 0%, rgba(255, 188, 0, 0.253), transparent);
}
.bg-lbl{
    background-image: radial-gradient(farthest-side at 0% 100%, rgba(255, 188, 0, 0.253), transparent);
}
.bg-lbr{
    background-image: radial-gradient(farthest-side at 100% 100%, rgba(255, 188, 0, 0.253), transparent);
}
.bg-primary{
    background-color:  var(--primary-color) !important;
}
.dark-bg {
    background-color: #1C3443;
    color: white;
}

.bg-dark-item{
    background: rgba(30, 30, 30, 0.553) !important;
    color: white;
}
.dark-label::after {
    background: transparent !important;
}
/* ==========================================================================
   6. THEME GRADIENT STYLES
   ========================================================================== */

/* Applying the requested theme gradient */
.bg-gradient {
    background: var(--bg-gradient)!important;
    color: white; /* Adjust text color for readability on gradient */
}

/* Applying the requested theme gradient to text */
.text-gradient {
    background: var(--bg-gradient) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* ==========================================================================
   7. HOVER EFFECTS & ANIMATIONS
   ========================================================================== */

/* General hover effect */
.hover-effect {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 10px;
}

.hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Fade-in animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-in-out forwards;
}

/* Animation delays */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

/* FadeInUp Keyframes */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hover scale effect */
.hover-scale {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.hover-scale:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(255, 255, 255, 0.2); /* Consider adjusting shadow color based on context */
}

/* ==========================================================================
   8. COMPONENT STYLES
   ========================================================================== */

/* 8.1 Header Styles */
.pubilc-main-header .nav-item .nav-link:hover{
    color: var(--primary-color); /* Theme color on hover */
}
.pubilc-main-header .nav-item .dropdown-menu .nav-link:hover{
    color:black !important;
}
.pubilc-main-header .nav-item .w3-amber .nav-link {
    color: black; /* Assuming w3-amber is a specific class we don't override directly */
}
.dark-border{
    border-color: rgba(255, 255, 255, 0.2) !important; /* Keep as is unless related to theme */
}

/* 8.2 Hero Section Specific Styles */
.feature-box {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 1rem;
}

.profile-card, .projects-tag, .rating-badge {
  background: white; /* Or use var(--panel-bg-color) */
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-color); /* Use theme text color */
}

.projects-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  /* Could apply theme color here if desired:
     background: #ffbc00;
     color: black;
  */
}

.rating-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
   /* Could apply theme color here if desired:
     background: #ff0058;
     color: white;
  */
}

.profile-card {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

.hero-img {
  position: relative;
  border-radius: 2rem;
  padding: 2rem;
}

.hero-img img {
  max-width: 100%;
  border-radius: 2rem;
}

/* 8.3 Ribbon Style */
.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    top: -10px;
    right: -0px;
    z-index: 1;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 155px;
    padding: 5px 0;
    background-color:var(--primary-color); /* Theme color */
    color: #000; /* Adjusted text color for yellow bg */
    text-align: center;
    font-weight: bold;
    transform: rotate(45deg);
    top: 30px;
    right: -45px;
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
}

/* 8.4 Social Media Footer Styles */
.social-links {
    background: linear-gradient(180deg, #212529, #000000); /* Keeping dark footer */
}

.social-links p {
    color: #e0e0e0;
    font-size: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color); /* Theme color */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #000; /* Black text on yellow */
    font-size: 15px;
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
}

.social-btn:hover {
    transform: scale(1.1);
    border-color:var(--primary-color); /* Other theme color for border */
    /* Applying theme gradient on hover */
    background: var(--bg-gradient);
    color: white; /* White text on gradient */
    box-shadow: 0 4px 10px rgba(255, 188, 0, 0.6); /* Shadow based on theme yellow */
}

/* ==========================================================================
   9. CSS ANIMATE (Placeholder - No specific rules provided)
   ========================================================================== */
/* Add any specific CSS animations here if needed */











.about-us-section {
    background-color: #0f0f0f;
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Vertical Text Style */
.vertical-text {
    position: absolute;
    left: -60px; /* Adjust */
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 70px; /* Adjust */
    font-weight: bold;
    color: rgba(255, 255, 255, 0.05); /* Very light */
    letter-spacing: 10px;
    white-space: nowrap;
    z-index: 0;
}

/* Background Graphic */
.background-graphic {
    position: absolute;
    right: 5%;
    bottom: 10%;
    width: 120px; /* Adjust */
    opacity: 0.3; /* Adjust */
    z-index: 0;
}
.background-graphic img {
    max-width: 100%;
    height: auto;
}


/* Image Container & Style */
.image-container {
    position: relative;
    padding: 15px; /* Spacing around image if needed */
    /* background: linear-gradient(to right, transparent, rgba(0,0,0,0.3)); */ /* Optional gradient */
}

.about-image {
    border-radius: 0 15px 15px 0; /* Round only right corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative; /* For badge positioning */
    z-index: 2;
}

/* Explore More Badge */
.explore-badge {
    position: absolute;
    top: 0px; /* Adjust */
    left: 0px; /* Adjust */
    width: 100px; /* Adjust */
    height: 100px; /* Adjust */
    /* Add background styles if not an image */
    /* background: linear-gradient(315deg, #ffbc00, #ff0058) !important; */ /* Theme gradient */
    /* border-radius: 50%; */
    /* display: flex; */
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    text-align: center;
    /* color: #111; */
    /* font-size: 12px; */
    /* font-weight: bold; */
    z-index: 3; /* Above the image */
    padding: 10px;
}
.explore-badge img {
    max-width: 100%;
}


/* Text Content Style */
.about-content {
    position: relative; /* Ensure it stays above vertical text */
    z-index: 1;
    padding-left: 15px; /* Slight padding on smaller screens */
}

@media (min-width: 992px) {
    .about-content {
        padding-left: 40px; /* More padding on larger screens */
    }
}


.about-label {
    color: #ffbc00; /* Theme primary color (Golden Yellow) */
    font-size: 0.9rem;
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
}

.about-label i {
    margin-right: 8px;
}

.about-content h1 {
    font-size: 2.5rem; /* Adjust */
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content .text-muted {
    color: #cccccc !important; /* To make text slightly lighter */
    line-height: 1.7;
}

/* Feature List Style */
.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: #e0e0e0;
}

.feature-list i {
    color: var(--primary-color); /* Theme primary color (Golden Yellow) */
    margin-right: 12px;
    margin-top: 4px; /* To align with text */
    font-size: 1.1rem;
}

/* Support Section */
.support-section h2 {
    font-size: 1.8rem; /* Adjust */
    font-weight: bold;
    margin-bottom: 10px;
}

/* More About Button */
.btn-more-about {
    /* background-color removed */
    background: var(--bg-gradient) !important; /* Theme gradient applied */
    color: #111111; /* Kept text color dark for visibility on gradient */
    border: none;
    padding: 10px 25px;
    border-radius: 50px; /* Pill shape */
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease; /* Transition 'all' for background/transform */
    display: inline-flex;
    align-items: center;
}

.btn-more-about i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-more-about:hover {
    /* Consider slightly changing gradient or reducing opacity on hover */
    /* Option: Slightly darker shade */
    background: var(--bg-gradient) !important; /* Slightly darker version of gradient */
    color: #000;
    /* box-shadow: 0 5px 15px rgba(255, 188, 0, 0.4); */ /* Optional: glow effect on hover */
}

.btn-more-about:hover i {
   transform: translateX(5px);
}


/* Certified Box */
.certified-box {
    background-color: #222222; /* Slightly lighter dark gray */
    padding: 15px 20px;
    border-radius: 8px;
    max-width: 280px; /* Limit width */
    font-size: 0.9rem;
}

.certified-icon {
    width: 40px; /* Adjust */
    height: auto;
}


/* -----------------------------------
---------------------SEO -----------
----------------------------------- */
.seo-growth-section {
    --image-border-radius: 20px;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.seo-growth-section .images-stack {
    position: relative;
    min-height: 350px;
}

.seo-growth-section .image-container {
    border-radius: var(--image-border-radius);
    overflow: hidden;
    position: absolute;
    padding: 8px;
}

.seo-growth-section .image-container img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: calc(var(--image-border-radius) - 8px);
}

.seo-growth-section .my-divider {
    opacity: 1;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.seo-growth-section .avatar-count {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: -12px;
    z-index: 1;
}

.seo-growth-section .image-1 { width: 65%; top: 0; left: 0; z-index: 1; }
.seo-growth-section .image-2 { width: 55%; top: 30%; right: 0; z-index: 2; }
.seo-growth-section .explore-more-circle { position: absolute; top: 0%; right: 5%; z-index: 5; transform: translate(0, 0); }
.seo-growth-section .explore-more-circle svg text { font-weight: 500; }


.seo-growth-section .happy-customers { margin-top: 2rem; }
.seo-growth-section .avatar-group { position: relative; }
.seo-growth-section .avatar {
    width: 40px;
    height: 40px;
    margin-left: -12px;
    object-fit: cover;
}
.seo-growth-section .avatar:first-child { margin-left: 0; }
.seo-growth-section .customer-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.seo-growth-section .about-us-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.seo-growth-section .highlight-star {
    font-size: 1.2em;
    margin-right: 4px;
}
.seo-growth-section .main-heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.seo-growth-section .feature-item { font-size: 0.95rem; }
.seo-growth-section .feature-icon svg { width: 20px; height: 20px; vertical-align: middle; }
.seo-growth-section .feature-icon-lg svg { width: 32px; height: 32px; }
.seo-growth-section .feature-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0; }

.seo-growth-section .team-avatar { width: 50px; height: 50px; object-fit: cover; }
.seo-growth-section .team-name { font-size: 1.1rem; font-weight: 600; }
.seo-growth-section .team-title { font-size: 0.85rem; }
.seo-growth-section .btn-more-about {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.seo-growth-section .arrow-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
}

@media (max-width: 991.98px) {
    .seo-growth-section .main-heading { font-size: 2.5rem; }
    .seo-growth-section .images-stack { min-height: 450px; margin-bottom: 2rem; }
    .seo-growth-section .image-1 { width: 70%; }
    .seo-growth-section .image-2 { width: 60%; top: 25%; }
    .seo-growth-section .explore-more-circle { top: 2%; right: 2%; width: 100px; height: 100px; }
    .seo-growth-section .happy-customers { justify-content: center; margin-top: 1rem; padding-top: 0 !important; }
    .seo-growth-section { padding-top: 2rem; padding-bottom: 2rem; }
}

@media (max-width: 767.98px) {
     .seo-growth-section .main-heading { font-size: 2rem; text-align: center; }
     .seo-growth-section .about-us-tag { text-align: center; }
     .seo-growth-section .feature-item,
     .seo-growth-section .feature-block { justify-content: center; text-align: center; }
     .seo-growth-section .feature-icon-lg { margin-right: 0; margin-bottom: 0.5rem; }
     .seo-growth-section .feature-block { flex-direction: column; align-items: center !important; }
     .seo-growth-section .team-member { flex-direction: column; text-align: center; }
     .seo-growth-section .team-avatar { margin-right: 0; margin-bottom: 0.5rem; }
     .seo-growth-section .team-member > div { margin-right: 0 !important; margin-bottom: 1rem; }
     .seo-growth-section .btn-more-about { margin-left: 0 !important; }
     .seo-growth-section .images-stack { min-height: 400px; }
     .seo-growth-section .image-1 { width: 75%; }
     .seo-growth-section .image-2 { width: 65%; top: 20%; }
     .seo-growth-section .explore-more-circle { top: 1%; right: 1%; width: 80px; height: 80px; }
     .seo-growth-section .explore-more-circle svg text { font-size: 5px; }
     .seo-growth-section .explore-more-circle svg circle { r: 14; }
     .seo-growth-section .explore-more-circle svg text[text-anchor="middle"] { font-size: 12px; y: 53; }
}
/* -----------------------------------
------------------End---SEO -----------
----------------------------------- */



/* Stylish Section  */
   /* Import your fonts and define variables if not already done globally */
/* Assuming your fonts and variables from the previous message are available */

/* ============================================ */
/* SCOPED STYLES: Our Services Section */
/* ============================================ */

.our-services-section {
    background-size: 15px 15px; /* Adjust size/spacing of dots */
    color: var(--text-color, #ffffff); /* Default to light text */
    padding: 80px 0 150px 0; /* Top/Bottom padding, more bottom for rocket space */
    position: relative;
    overflow: hidden; /* Hide overflow for positioning */
    font-family: 'Sohne', sans-serif; /* Use your default font */
}

/* Add the orange/brown cloud/ground shape at the bottom */
.our-services-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px; /* Adjust height of the shape */
    background: 
                radial-gradient(ellipse at bottom center, var(--primary-color) 15%, transparent 50%);
    background-blend-mode: multiply, normal; /* Blend modes */
    opacity: 0.7; /* Adjust opacity */
    border-radius: 50% 50% 0 0 / 100px 100px 0 0; /* Creates the curved top edge */
    z-index: 1;
    pointer-events: none; /* Allow clicks through */
}


/* Label style */
.our-services-section .services-label {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Heading style */
.our-services-section .services-heading {
    font-family: 'Staatliches-Regular', sans-serif; /* Example heading font */
    font-size: clamp(2.2rem, 5vw, 3.5rem); /* Responsive font size */
    color: #fff;
    font-weight: normal;
    line-height: 1.2;
    position: relative; /* Ensure heading is above pseudo-elements */
    z-index: 2;
}

/* Wrapper for cards and rocket */
.our-services-section .services-cards-wrapper {
    margin-top: 50px; /* Space below heading */
    padding-bottom: 100px; /* Extra space at bottom for rocket effect */
    position: relative;
    z-index: 3; /* Above background shape */
}

/* Row containing the cards */
.our-services-section .services-row {
    gap: 20px; /* Spacing between cards */
    position: relative; /* For absolute positioning of lines if needed */
    z-index: 5; /* Cards above lines/rocket base */
}

/* Individual Service Card */
.our-services-section .service-card {
    backdrop-filter: blur(10px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    color: #e0e0e0; /* Light text color for cards */
    text-align: left;
    width: calc(20% - 16px); /* Base width for 5 cards (adjust gap calculation if needed) */
    min-width: 220px; /* Prevent cards from becoming too small */
    margin-bottom: 20px; /* Spacing for wrapping */
    position: relative; /* Needed for the number */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 5; /* Ensure cards are clickable */
    min-height: 230px; /* Ensure minimum height */
    display: flex;
    flex-direction: column;
}

.our-services-section .service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

/* Card Number */
.our-services-section .service-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    color: rgba(255, 157, 0, 0.5); /* Semi-transparent primary color */
    opacity: 0.8;
}

/* Card Icon */
.our-services-section .service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color); /* Theme color */
    display: inline-block;
    line-height: 1;
}

/* Card Title */
.our-services-section .service-title {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Sohne', sans-serif; /* Use bold version if available */
    font-weight: bold;
}

/* Card Description */
.our-services-section .service-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #c0c0c0; /* Slightly dimmer text */
    flex-grow: 1; /* Push description down if card height varies */
}

/* Positioning Cards for the Curve (Adjust these values!) */
.our-services-section .card-1 { transform: translateY(40px); }
.our-services-section .card-2 { transform: translateY(10px); }
.our-services-section .card-3 { transform: translateY(-15px); } /* Highest card */
.our-services-section .card-4 { transform: translateY(10px); }
.our-services-section .card-5 { transform: translateY(40px); }

/* Rocket Graphic Positioning */
.our-services-section .rocket-graphic {
    position: absolute;
    bottom: -100px; /* Start below the wrapper */
    left: 50%;
    transform: translateX(-50%);
    width: 120px; /* Adjust size */
    max-width: 80%;
    z-index: 4; /* Below cards, above background */
    /* Add animation if desired */
    /* animation: launchRocket 2s ease-out forwards; */
}

/* Optional Rocket Animation */
/* @keyframes launchRocket {
    from { bottom: -150px; opacity: 0.5; }
    to { bottom: -80px; opacity: 1; }
} */


/* Connecting Lines Styling (SVG approach recommended) */
.our-services-section .service-lines {
    position: absolute;
    top: 40%; /* Adjust vertical position */
    left: 5%; /* Adjust horizontal position */
    width: 90%; /* Adjust width */
    height: auto;
    z-index: 2; /* Behind cards, above background */
    pointer-events: none; /* Allow clicks through */
    transform: translateY(-50%);
}
.our-services-section .lines-svg {
    display: block;
    width: 100%;
}

/* Wavy Bottom Divider */
.our-services-section .wavy-divider {
    position: absolute;
    bottom: -1px; /* Ensure it covers the very bottom edge */
    left: 0;
    width: 100%;
    line-height: 0; /* Prevent extra space */
    z-index: 10; /* Above the section background */
}

.our-services-section .wavy-divider svg {
    display: block;
    width: 100%;
    height: auto; /* Adjust height as needed or keep auto */
    max-height: 120px; /* Control max height */
}
/* Make sure the fill color matches the NEXT section's background */
.our-services-section .wavy-divider svg path {
     fill: var(--main-bg-color, #e8e9ec); /* Default to light theme color */
}
body.mode-dark .our-services-section .wavy-divider svg path {
     fill: var(--main-bg-color, #111827); /* Dark theme next section color */
}


/* Responsive Adjustments */
@media (max-width: 1199px) {
    .our-services-section .service-card {
        width: calc(33.333% - 14px); /* 3 cards per row */
        min-width: 250px;
    }
    /* Adjust curve transforms for 3 cards if needed */
     .our-services-section .card-1 { transform: translateY(15px); }
     .our-services-section .card-2 { transform: translateY(-10px); }
     .our-services-section .card-3 { transform: translateY(15px); }
     /* Hide cards 4 & 5 or adjust */
     .our-services-section .card-4,
     .our-services-section .card-5 { transform: translateY(30px); } /* Example adjustment */
}


@media (max-width: 991px) {
     .our-services-section {
         padding: 60px 0 120px 0;
     }
    .our-services-section .services-row {
        gap: 25px; /* Increase gap slightly */
    }
    .our-services-section .service-card {
        width: calc(50% - 15px); /* 2 cards per row */
        min-width: 280px;
        min-height: auto; /* Let height be natural */
    }
    /* Reset transforms for simpler layout */
    .our-services-section .card-1,
    .our-services-section .card-2,
    .our-services-section .card-3,
    .our-services-section .card-4,
    .our-services-section .card-5 {
        transform: translateY(0);
    }
    .our-services-section .rocket-graphic {
        width: 100px;
        bottom: -80px;
    }
     .our-services-section .service-lines {
         display: none; /* Hide complex lines on smaller screens */
     }
}

@media (max-width: 767px) {
     .our-services-section {
         padding: 50px 0 100px 0;
     }
     .our-services-section .services-heading {
         font-size: clamp(1.8rem, 7vw, 2.5rem); /* Smaller heading */
     }
    .our-services-section .service-card {
        width: calc(100% - 20px); /* 1 card per row */
        max-width: 400px; /* Max width for single card */
        margin-left: auto;
        margin-right: auto;
    }
     .our-services-section .rocket-graphic {
        width: 80px;
        bottom: -60px;
    }
    .our-services-section::before { /* Adjust bottom cloud */
        height: 200px;
        border-radius: 50% 50% 0 0 / 60px 60px 0 0;
    }
}

/* Stylish Section  */

















/* === REQUIRED CSS FOR PROMOTIONSUP MARQUEE SECTION (Animation part) === */
.promotionsup-marquee-container {
    width: 100%;
    overflow: hidden;
}

.promotionsup-marquee-content {
    white-space: nowrap;
    animation: promotionsupScroll 40s linear infinite;
}

.promotionsup-marquee-container:hover .promotionsup-marquee-content {
    animation-play-state: paused;
}

.promotionsup-marquee-item {
    padding-left: 25px;
    padding-right: 25px;
    min-width: 160px;
}

@keyframes promotionsupScroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%); /* Assumes content is duplicated in HTML */
    }
}
/* === END REQUIRED CSS === */