/* Custom CSS Variables */
:root {
    --primary-dark: #00282A;
    --accent-yellow: #FFC107;
    --accent-orange: #FF9800;
    --white: #FFFFFF;
    --black: #000000;
    --light-grey: #F5F5F5;
    --text-dark: #00282A;
    --text-light: #666666;
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*outline: 1px solid red;*/
}
html, body {
  max-width: 100%;
  overflow-x: hidden !important;
}
body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Headings use Keania One */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title-white,
.section-title-dark,
.service-title,
.strategy-title,
.footer-brand,
.footer-title {
    font-family: 'Keania One', cursive;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Paragraphs and body text use Segoe UI */
p, span, li, a, .hero-subtitle, .service-description, .strategy-description,
.benefit-text, .feature-text, .empowering-text, .nav-link, .btn,
.progress-label, .team-name, .team-role, .overview-label, .footer-description,
.footer-links a, .footer-contact, .accordion-button, .accordion-body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

.custom-container{
     max-width: 1165px;
     margin:auto;
}
.title-container{
    text-align:center;
    padding-bottom:30px;
    position: relative;
    /*z-index: 1;*/
}
.title-container h2{
    font-size: 3.5rem;
    padding:16px 0px 0px;
    margin-bottom:10px;
}
.title-container .title-bg-img{
    position: absolute;
    width: 800px;
    object-fit: contain;
}
.yellow-text{
    color:#F79A01;
}
.text-white{
    color:#ffffff;
}
.Keania-font{
    font-family: 'Keania One', cursive;
}
.pt-50{
    padding-top:50px;
}
.pb-50{
    padding-bottom:50px;
}
.mt-50{
    margin-top:50px;
}
.mb-50{
    margin-bottom:50px;
}

/* Navigation Styles */
/* Navigation Styles */
/* Navigation Styles */
.header-wrapper .navbar-brand img{
    max-width:180px;
}
.header-wrapper{
    position:relative;
}
.navbar-nav .nav-link.active{
    color:#f79d08 !important;
}
/* Dropdown SVG chevron hover effect */
.dropdown-toggle svg path {
    transition: stroke 0.3s ease;
}

.dropdown-toggle:hover svg path {
    stroke: #f79d08 !important; /* Yellow color on hover */
}

.dropdown-toggle.active svg path {
    stroke: #f79d08 !important; /* Blue when active */
}

/* Yellow on hover even when active */
.dropdown-toggle.active:hover svg path {
    stroke: #f79d08 !important;
}
.navbar {
    transition: var(--transition);
    position: absolute;
    top:35px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1000;
    backdrop-filter: blur(20px);
    padding: 20px 10px;
}
.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    background: radial-gradient(
        95.16% 139.58% at 4.84% 0%,
        #D8FFF8 0%,
        #D8FFF8 100%
    );
    border-radius: inherit;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}
.navbar-brand {
    font-family: 'Keania One', cursive;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-dark) !important;
    letter-spacing: 0.5px;
}
.nav-link {
    font-weight: 300;
    color: var(--white) !important;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}
.nav-link:hover {
    color: #f79d08 !important;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-yellow);
    transition: var(--transition);
    transform: translateX(-50%);
}
.nav-link:hover::after {
    width: 60%;
}

/* Remove underline effect for dropdown links only */
.nav-item.dropdown .nav-link::after {
    display: none !important;
}

/* Dropdown arrow styling */
.dropdown-toggle::after {
    display: inline-block !important;
    margin-left: 0.5rem;
    vertical-align: 0.15em;
    content: "";
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-bottom: 0;
    border-left: 0.35em solid transparent;
    transition: var(--transition);
}

.nav-item.dropdown .dropdown-toggle::after {
    color: var(--white);
}

.nav-item.dropdown .dropdown-toggle:hover::after {
    color: #f79d08;
}
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.6);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Dropdown Styles */
.dropdown-menu {
    background: rgba(255, 255, 255);
    /*backdrop-filter: blur(20px);*/
    border: 1px solid rgba(216, 255, 248, 0.3);
    border-radius: 12px;
    padding: 10px 0;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    z-index: 9999;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 700;
    color: #00282A !important;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-item .icon {
    width: 24px;
    height:24px;
    display:flex;
    background-color: #EFF5FB;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.dropdown-item:hover {
    background: rgba(247, 154, 1, 0.1);
    color: #F79A01 !important;
}
.dropdown-item:active, .dropdown-item.active{
    background: rgba(247, 154, 1, 0.1);
}

/* Desktop dropdown hover */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu {
        margin-top: 0;
    }
}

/* Mobile dropdown styles */
@media (max-width: 991px) {
    .dropdown-menu {
        background: rgba(255, 255, 255);
        border: none;
        border-radius: 8px;
        margin: 10px 0;
        padding: 5px 0;
        z-index: 9999;
    }
    
    .dropdown-item {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .nav-item.dropdown {
        margin: 5px 0;
    }
    
    .dropdown-toggle::after {
        margin-left: 0.4rem;
    }
}

.btn-signup {
    background: #F79A01;
    font-size: 18px;
    color: var(--white) !important;
    padding: 8px 30px;
    border-radius: 25px;
    font-weight: 300;
    border: none;
    transition: var(--transition);
    box-shadow: 0px 0.88px 0px 0px #FFFFFF66 inset,
                0px -2.65px 0px 0px #00000033 inset,
                0px 0px 0px 3.54px #FFFFFF12,
                0px 0px 159.19px 0px #F79A0233;
}
.btn-signup:hover {
    background: #F79A01;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}
/* Hero Section */
.hero-section {
    background: var(--primary-dark);
    color: var(--white);
    padding : 180px 0px 100px;
    overflow: hidden;
    position: relative;
}
.networkss-lines-2 img {
        position: absolute;
    left: 0;
    width: 100vw;
    top: -20%;
    opacity: 0.5;
    transform-origin: center;
    z-index: 1;
    
    pointer-events: none;
    mask-image: linear-gradient(
  to bottom,
  transparent 0%,
  black 18%,
  black 100%
);

}
/* STATIC GRID */
.network-lines img {
    position: absolute;
    top: 5%;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;        /* covers entire screen */
    opacity: 0.55;
    transform: scaleY(-1);    /* upside down */
    transform-origin: center;
    z-index: 1;
    pointer-events: none;
    /* SOFT FADE TOP + BOTTOM */
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 18%,
        black 82%,
        transparent 100%
    );

    /* -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 18%,
        black 82%,
        transparent 100%
    ); */
}



/* FALLING DOTS CANVAS */
.falling-dots {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 4rem;
    font-weight: 400;
    margin: 1rem 0;
    line-height: 1.2;
}
.sub-heading-hero{
    background: linear-gradient(0deg, #F79A01 0%, #FFB43A 100%);
    border: 0.5px solid #FFD029;
    padding:4px 15px;
    color:#1F2937;
    border-radius: 25px;
}
.word-wrapper {
  display: inline-block;
  height: 1.2em;
  overflow: hidden;
  vertical-align: bottom;
}

.word-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: wordSlide 6s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.word-list span {
  height: 1.2em;
  display: flex;
  align-items: center;
  font-family: 'Keania One', cursive;
  color: #F79A01;
}

@keyframes wordSlide {
  0%, 20% {
    transform: translateY(0);
  }

  33%, 53% {
    transform: translateY(-1.2em);
  }

  66%, 86% {
    transform: translateY(-2.4em);
  }

  100% {
    transform: translateY(0);
  }
}


.hero-subtitle {
    font-size: 1.25rem;
    color: #D2D0DD;
    margin-bottom: 2rem;
}

.btn-hero {
    background: transparent;
    color: #F79A01;
    border:1px solid #F79A01; 
    padding: 10px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
    background:#F79A01;
    color:#ffffff;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}
.btn-hero.btn-black{
    color: #000000;
    border:1px solid #000000; 
}
.svg-color{
    fill: currentColor;
}
/* Hero Illustration */
/* HVAC Challenge begin */
        .hvac-challenges-list{
            padding-left: 50px;
        }
        .hvac-main-heading {
            font-size: 48px;
            color: #1a1a1a;
            line-height: 1.2;
            margin-bottom: 40px;
        }

        .hvac-highlight-text {
            color: #f39c12;
        }

        .hvac-intro-text {
            font-size: 16px;
            color: #3C3C3C;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .hvac-puzzle-container {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            margin-bottom: 40px;
        }
        .hvac-puzzle-container img{
            width:100%;
        }
        .hvac-puzzle-image {
            width: 100%;
            max-width: 450px;
            height: auto;
        }

        .hvac-challenge-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .hvac-challenge-number {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            border: 2px solid #f39c12;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            color: #f39c12;
            margin-right: 20px;
            background-color: #fff;
            z-index:1;
        }

        .hvac-challenge-content {
            flex: 1;
        }

        .hvac-challenge-title {
            font-size: 20px;
            font-weight: 600;
            color:#101828;
            margin-bottom: 10px;
            font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
        }

        .hvac-challenge-description {
            font-size: 15px;
            color: #514F6E;
            line-height: 1.7;
            margin: 0;
        }
        .hvac-challenge-description a{
            text-decoration: none;
    color: #f59c12;
        }

        .hvac-dashed-line {
            border-left: 2px dashed #f39c12;
            height: 100px;
            margin-left: 25px;
            margin-bottom: 0;
            margin-top: -85px;
            position: absolute;
            display:none;
        }

        @media (max-width: 991px) {
            .hvac-main-heading {
                font-size: 36px;
            }

            .hvac-puzzle-container {
                margin-bottom: 60px;
            }
        }

        @media (max-width: 767px) {
            .hvac-main-heading {
                font-size: 28px;
            }

            .hvac-challenge-title {
                font-size: 18px;
            }

            .hvac-challenge-description {
                font-size: 14px;
            }
        }

.hvac-business-content p{
    color:#000000;
    line-height:33px;
    font-size:16px;
}
.hvac-business-content .btn{
    margin-top:20px;
}
.hvac-business-img img{
    width:100%;
    margin-top:15px;
}
/* HVAC Challenge end */
/* Inner page banner */
.inner-page-banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}
/* seo-services-wrapper begin */
        .local-seo-card {
            background: #FFFCF6;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
            height: 100%;
        }
        .local-seo-card a{
            text-decoration: none;
            color: #f79a01;
            font-weight: 500;
        }

        .global-seo-card {
            background: url("../../assets/images/Global-bg.jpg") center/cover no-repeat;
            border-radius: 20px;
            padding: 40px;
            color: #ffffff;
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
        .global-seo-card a{
            text-decoration: none;
            color: #f79a01;
            font-weight: 500;
        }

        /*.global-seo-card::before {*/
        /*    content: '';*/
        /*    position: absolute;*/
        /*    top: -50%;*/
        /*    right: -20%;*/
        /*    width: 400px;*/
        /*    height: 400px;*/
        /*    background: rgba(255, 255, 255, 0.05);*/
        /*    border-radius: 50%;*/
        /*}*/

        /*.global-seo-card::after {*/
        /*    content: '';*/
        /*    position: absolute;*/
        /*    top: 10%;*/
        /*    right: -10%;*/
        /*    width: 300px;*/
        /*    height: 300px;*/
        /*    background: rgba(255, 255, 255, 0.03);*/
        /*    border-radius: 50%;*/
        /*}*/

        .seo-icon-wrapper {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .local-icon-bg {
            background-color: #2c4a5a;
        }

        .global-icon-bg {
            background-color: #ffffff;
        }

        .icon-placeholder {
            width: 35px;
            height: 35px;
            background-size: contain;
        }

        .local-icon {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><rect x="3" y="3" width="18" height="14" rx="2" stroke="white" stroke-width="1.5" fill="none"/><path d="M3 8h18M8 3v5M7 13h4M7 16h6" stroke="white" stroke-width="1.5" stroke-linecap="round"/></svg>');
        }

        .global-icon {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="9" stroke="%232c4a5a" stroke-width="1.5"/><path d="M12 3c2.5 3 2.5 6 2.5 9s0 6-2.5 9M12 3c-2.5 3-2.5 6-2.5 9s0 6 2.5 9M3 12h18" stroke="%232c4a5a" stroke-width="1.5"/></svg>');
        }

        .seo-card-title {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .seo-card-description {
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 35px;
        }

        .focus-areas-heading,
        .tools-section-heading {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .focus-list-container {
            list-style: none;
            padding: 0;
            margin-bottom: 35px;
        }

        .focus-list-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 18px;
        }
        .focus-list-item span a{
            color: #f79a01;
            text-decoration: none;
        }

        .checkmark-icon {
            width: 20px;
            height: 20px;
            min-width: 20px;
            margin-right: 15px;
            margin-top: 2px;
        }

        .local-checkmark {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M5 13l4 4L19 7" stroke="%231a1a1a" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
            background-size: contain;
        }

        .global-checkmark {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M5 13l4 4L19 7" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
            background-size: contain;
        }

        .global-divider-line {
            height: 1px;
            background: rgba(255, 255, 255, 0.2);
            margin: 30px 0;
        }

        .global-content-wrapper {
            position: relative;
            z-index: 1;
        }
/* seo-services-wrapper end */
/* Seo Strages begin */
 .seo-strategies-wrapper {
            background: #00282A;
            padding: 60px 20px;
        }

        .seo-content-card {
            border: 2px solid #d4a574;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
        }

        .seo-content-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, #F79A01 0%, transparent 50%, #F79A01 100%);
            border-radius: 30px;
            opacity: 0.3;
            z-index: -1;
        }

        .seo-primary-heading {
            font-size: 36px;
            color: #ffffff;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .seo-highlight-text {
            color: #ff9933;
        }

        .seo-description-text {
            color: #e0e0e0;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .seo-image-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .seo-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .seo-secondary-heading {
            font-size: 2.2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
            font-family: 'Arial Black', sans-serif;
            line-height: 1.2;
        }

        .seo-orange-highlight {
            color: #ff9933;
        }

        .seo-info-paragraph {
            color: #e0e0e0;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 15px;
        }
        .seo-info-paragraph a{
            color: #f79a01;
            text-decoration: none;
        }
        .seo-info-paragraph ul li{
            color: #e0e0e0;
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .seo-primary-heading,
            .seo-secondary-heading {
                font-size: 1.8rem;
            }

            .seo-content-card {
                padding: 30px 20px;
            }

            .seo-strategies-wrapper {
                padding: 40px 0px;
            }
        }

        @media (max-width: 576px) {
            .seo-primary-heading,
            .seo-secondary-heading {
                font-size: 1.5rem;
            }
        }
/* Seo Strages end */

/* Seo Service Cards begin */

.seo-service-card {
            border-radius: 20px;
            padding: 40px;
            height: 100%;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .seo-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: inherit;
            transition: all 0.4s ease;
            z-index: -1;
        }

        .seo-card-light-theme {
            background-color: #DDFDFF;
            color: #333;
        }

        .seo-card-dark-theme {
            background-color: #0D4D4D;
            color: #fff;
        }

        .seo-service-card:hover.seo-card-light-theme {
            background: linear-gradient(79.83deg, #05373A 6.26%, #15575D 57.04%, #05373A 107.81%);
            color: #fff;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        .seo-service-card:hover.seo-card-light-theme .seo-service-title-heading {
            color: #fff;
        }

        .seo-service-card:hover.seo-card-dark-theme {
            background-color: #E8F6F8;
            color: #333;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .seo-service-icon-svg {
            width: 130px;
            height: 130px;
            margin-bottom: 20px;
            transition: all 0.4s ease;
        }

        .seo-service-title-heading {
            font-size: 28px;
            font-weight: 600;
            color: #00282A;
            transition: color 0.4s ease;
        }

        .seo-service-description-text {
            font-size: 15px;
            line-height: 1.7;
            transition: color 0.4s ease;
        }
        .seo-service-description-text a{
            text-decoration: none;
            color: #f79a01;
            font-weight: 500;
        }

        .seo-icon-title-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        /* SVG Icon Styles */
        .seo-icon-stroke-path {
            stroke: #0D4D4D;
            transition: stroke 0.4s ease;
        }

        .seo-icon-fill-none {
            fill: none;
        }

        .seo-card-dark-theme .seo-icon-stroke-path {
            stroke: #fff;
        }

        .seo-service-card:hover.seo-card-light-theme .seo-icon-stroke-path {
            stroke: #fff;
        }

        .seo-service-card:hover.seo-card-dark-theme .seo-icon-stroke-path {
            stroke: #0D4D4D;
        }
/* Seo Service Cards end */
/* Seo Core begin */
.seo-competencies-wrapper {
            background: #00282A;
            color: white;
            padding: 40px 0 60px;
        }

        .seo-main-heading {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            letter-spacing: 2px;
            margin-bottom: 30px;
            text-transform: uppercase;
            text-align: center;
        }

        .seo-heading-highlight {
            color: #ff9800;
        }

        .seo-description-paragraph {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 30px;
            text-align: justify;
        }

        .seo-benefits-listing {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .seo-benefit-item {
            font-size: 1rem;
            margin-bottom: 15px;
            padding-left: 35px;
            position: relative;
            line-height: 1.6;
        }

        .seo-benefit-item::before {
            content: '';
            width: 0;
            height: 0;
            border-left: 12px solid #ff9800;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            position: absolute;
            left: 5px;
            top: 5px;
        }
        .seo-benefit-item a{
            color: #ff9800;
            text-decoration: none;
        }

        .seo-team-visual {
            width: 100%;
            max-height: 370px;
            object-fit:cover;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        @media (max-width: 768px) {
            .seo-main-heading {
                font-size: 1.8rem;
            }

            .seo-competencies-wrapper {
                padding: 40px 0;
            }
        }

/* Seo Core End */
/* Search Input field begin */
.search-input .custom-input {
            border-radius: 50px;
            border: none;
            padding: 12px 20px;
            width: 100%;
            background-color: #f1f3f5;
            box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
            font-size: 1rem;
        }
        .search-input .custom-input:focus {
            outline: none;
            box-shadow: 0 0 5px rgba(0,123,255,0.5);
            background-color: #fff;
        }

        .search-input .input-wrapper {
            position: relative;
            width: 400px; 
        }

        .search-input .input-wrapper .search-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
            pointer-events: none;
        }
        .search-cta .search-input{
           display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column; 
        }
        .search-cta p{
            color:#ffffff;
            padding: 10px 0px;
        }

/* Search Input field end */
/* About us page begin */
.mv-main-wrapper {
            background: #00282A;
            border-radius: 20px;
            padding: 60px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .mv-heading-primary {
            font-size: 3rem;
            color: white;
            margin-bottom: 20px;
        }

        .mv-heading-accent {
            color: #ff9500;
        }

        .mv-intro-text {
            color: #B3B3B3;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .mv-heading-secondary {
            color: white;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .mv-description-text {
            color: #B3B3B3;
            font-size: 0.9rem;
            line-height: 1.7;
        }

        .mv-image-wrapper img{
            width:100%;
        }

        .mv-image-frame img{
            width:100%;   
        }
        .mt-negative-60{
            margin-top:-60px;
        }

        @media (max-width: 768px) {
            .mv-main-wrapper {
                padding: 30px 20px;
            }

            .mv-heading-primary {
                font-size: 2rem;
            }

            .mv-heading-secondary {
                font-size: 1.5rem;
            }
        }
        /**/
.agency-main-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .agency-grid-wrapper {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(3, 1fr);
        }

        .agency-service-box {
            padding: 45px 35px;
            border: 1px solid #00282A;
            min-height: 280px;
            display: flex;
            flex-direction: column;
        }

        .service-header-wrapper {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .service-number-label {
            font-size: 100px;
            font-weight: 600;
            color: #00282A;
            line-height: 1;
            letter-spacing: -2px;
        }

        .service-title-heading {
            font-size: 26px;
            font-weight: 600;
            color: #00282A;
            margin: 0;
            padding-bottom: 15px;
            border-bottom: 2px solid #262626;
            flex: 1;
        }

        .service-description-text {
            font-size: 16px;
            line-height: 1.7;
            color: #2D2D2D;
            text-align: justify;
        }

        @media (max-width: 768px) {
            .agency-grid-wrapper {
                grid-template-columns: 1fr;
            }
            
            .service-number-label {
                font-size: 52px;
            }
            
            .service-title-heading {
                font-size: 18px;
            }
            
            .agency-service-box {
                padding: 30px 25px;
                min-height: 220px;
            }
        }
/**/
.process-main-container {
            background: #00282A;
            border-radius: 20px;
            padding: 60px 50px;
        }
        .process-main-container-width{
                max-width: 1044px;
                margin: auto;
        }

        .process-title-section {
            color: #ff9f1c;
            font-size: 2.5rem;
            margin-bottom: 30px;
        }

        .process-intro-text {
            color: #b8c5c5;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: 0;
        }

        @media (min-width: 992px) {
            .process-intro-text {
                margin-left: auto;
            }
        }

        .process-card-wrapper {
            background-color: #F0FEFF;
            border-radius: 12px;
            padding: 30px;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

        .process-card-wrapper:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .process-step-badge {
            background-color: #0a2e2e;
            color: #ffffff;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .process-card-title {
            color: #000000;
            font-size: 1.4rem;
            font-weight: 400;
            margin-bottom: 12px;
            font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
        }

        .process-card-description {
            color: #5a6c6c;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .process-main-container {
                padding: 40px 25px;
            }

            .process-title-section {
                font-size: 2rem;
            }
        }

/* About us page end */