:root {
    --primary-color: #2c59a3;
    --dark-blue: #092044;
    --text-color-light: #ffffff;
    --button-primary: #1e6af7;
    --button-secondary: #0a254c;
    --border-radius-base: 10px;
    --spacing-base: 1.5rem;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
   overflow-x:hidden;
}
.dropdown-item:hover {
    color: #000000;
    background-color: #cbdff8;
}
a.dropdown-item{ padding: 10px 20px;}
.p-auto{
    padding:80px 0px;
}
.banner{
    color: #fff;
background-image: url('bgbanner.webp');
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.bottom_area {
    padding-top: 40px;
    border-top: 1px solid #325D95;
}
.portfolio_img img {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}
/* --- Bootstrap Override and Header Styling --- */
.header {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    padding: 1.5rem 0; /* Vertical padding on the navbar itself */
    background-color: transparent !important;
}

.navbar-brand.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-color-light) !important;
}
.navbar-brand.logo img {
    width: 170px;
}
.navbar-nav .nav-link {
    color: #CFD9E6 !important;
    font-weight: 400;
    transition: color 0.3s;
    margin-right: 1.5rem;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--text-color-light) !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    /* Custom icon color for better visibility on dark background */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.quote-btn {
    background-color: var(--button-primary);
    color: var(--text-color-light);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-base);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap; /* Prevent button text wrapping */
}

.quote-btn:hover {
    background-color: #1a5ac7;
}

/* --- Hero Section Styling --- */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.industry-section .accordion-button::after, .accordion-flush .accordion-button::after{
    filter: brightness(0) invert(1);
}
.faq-header-btn.collapsed .accordion-button::after{
    filter: brightness(0) invert(0) !important;
}
.hero-content {
    max-width: 50%;
}

.hero-title {
    font-size: 58px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.highlight {
    color: #FFB900 !important;
}

.hero-description {
    font-size: 14px;
    width: 620px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.hoverbtn:hover{

}
.btn_yellow{background-color: #F9C608 !important;color: #111111 !important;}

.entire_btn2{
background-color: transparent !important;
border: 1px solid #fff !important;
color: #fff;
}
.entire_black{
    background-color: transparent !important;
    border: 1px solid #ACACAC !important;
    color: #111111;   
}
.entire_btn, .entire_btn2, .entire_black{
    text-decoration: none;
    transition: all 0.3s ease;
   padding: 10px 30px; 
   border-radius: 100px;
   border: none;
   font-size: 16px;
   font-weight: 500;
   background-color: #fff;
}
.entire_btn:hover{
    background: #FFB900 !important;
}
.entire_btn:hover a{color:#fff;}
.entire_btn a{color:#111111;text-decoration: none;}
.real-life-experience {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 12px;
}

.avatars {
    display: flex;
    position: relative;
}
img.avatar.person1 {
    border: none !important;
    z-index: 9;
    width: 40px;
    height: 40px;
}
.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.experience-text {
    align-items: center;
    display: flex;

    gap: 0.5rem;
}

.experience-count {
    font-size:32px;
    font-weight: 700;
}

.experience-label {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 18px;
}

.hero-logos {
    max-width: 50%;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.avatar_title{
margin: 0px;
}
.logo-item {
    background-image: linear-gradient(155deg, #ffffff38 0%, #ffffff17 99%, #ffffff00 100%);
    border: 1px solid #ffffff2b;
    border-radius: var(--border-radius-base);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0px;
    width: 350px;

    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.logo-item img {
    width: 160px;
}

/* --- Responsive Design (Adjusted for Bootstrap) --- */
.Sales_info{
    gap: 80px;
display: flex;
position: relative;
}
.stats-item.Stunning::after, .stats-item.Stunning2::after {
    content: "";
    position: absolute;
    top: 0px;
    transform: translateX(115px);
    height: 75%;
    width: 1.5px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2), transparent);
}
@media (max-width: 991px) { /* Bootstrap's 'lg' breakpoint for navbar collapse */
  .desicription_main{width:auto !important;}
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-logos {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .real-life-experience {
        justify-content: center;
    }
    
    /* Ensure collapsed menu is dark on mobile */
    .navbar-collapse {
        background-color: #fff;
        padding: 1rem;
        border-radius: var(--border-radius-base);
        margin-top: 0.5rem;
    }
    
    .navbar-nav {
        text-align: left;
    }
    
    .navbar-nav .nav-link {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .feature-item h3{font-size: 20px !important;}
    .feature-3, .feature-item, .center-placeholder{padding-top: 20px !important; padding: 0px !important;}
    .right-panel{
       margin-top: 20px;
    padding: 0px !important;
    }
    .right-panel .tab-content{
       min-height: 0px !important;
    }
    .tab_contentmain p {
    font-size: 12px !important;
    line-height: 22px !important;
}
    .tab_contentmain h2 {
    font-size: 20px !important;
}
    .tab-button{font-size: 15px;}
    .title-box span{
        font-size: 13px !important;
    }
    .service-link-icon{
        width: 35px !important;
        height: 35px !important;
    }
    .detail-tag {
    padding: 8px 12px !important;
    border-radius: 6px !important;
    font-size: 10px !important;}
    .tab-button .icon{padding: 8px 20px !important;}
    .title-box{padding: 6px 20px;}
    .about_img {
    margin-bottom: 20px;
}
    .logo-box{height: 90px !important;}
    .features-section{padding-top: 10px;}
    .stats-item.Stunning::after, .stats-item.Stunning2::after {
    transform: translateX(55px);
    height: 100%;
    width: 1.5px;}
    .stats-item p {
    font-size: 14px;
    line-height: 20px;
}
    .stats-item h2 {
    font-size: 32px !important;
    font-weight: 700 !important;
}
    .logo-item img {
        width: 110px !important;
    }
    .logo-item{
        width: 160px !important;
        padding:15px 0px !important;
    }
    .hero-title {
        font-size: 2rem;
    }

}
.header-section {
  display: flex;
  justify-content: space-between;
    gap: 60px;
    border-bottom: 1px solid var(--border-color);
}
.white_title-box{
    color: #00316A !important;
    border-color: #C7C9CB !important;
    background-color: #F5F7FA !important;
}
.white_title-box .dot{
background: #00316A !important;
}
.white_title-box .dot span{
    color: #00316A !important;
}
.title-box span{
    font-size: 14px;
    font-weight: 500 !important;
}
.about_us h4{
font-size: 34px;
color: #333333;
font-weight: 600;
line-height: 48px;
}
.about_us p{
    color: #666666;
    font-size: 14px;
    line-height: 28px;
}
.title-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 2px solid rgba(255, 255, 255, 0.4); /* faded white border */
    border-radius: 50px; /* pill shape */
    color: #fff;
    font-size: 20px;
    background-color: #0B3C75;
  }

  .dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
  }
  .sec_title2{font-size: 34px !important;}
 .sec_title 
 {
    font-size: 38px;
    font-weight: 600;
    line-height: 52px;
    margin: 0;
}

.header-content h1 span {
    color: var(--accent-color);
}

.stats-item {
    text-align: center;
}

.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding-top: 2rem;
}

.feature-card {
    background-color: var(--background-color);
  padding: 30px 25px;
   border: 1px solid #DCDCDC;
   border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}
.feature-icon img
 {
    margin-bottom: 10px;
    width: 50px;
}

.feature-card h3
 {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 12px;
    color: #666666;
    line-height: 22px;
    margin: 0;
}
.stats-item h2 {
    font-size:58px;
    font-weight: 600;
}
.partners-section{
    color: #fff;
    background-image: url(background.png.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.logo-box {
    border: 1px solid rgba(255,255,255,0.1); /* subtle border */
    height: 120px; /* adjust height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
  }
  .about_content {
    padding-left: 50px;
}
.services-discovery {
    display: flex;
    min-height: 80vh; /* Adjust height as needed */
    color: #fff;}

/* Left Panel (The Tabs Side) */
.left-panel {
    flex: 0 0 40%; /* Take 40% width */
    box-sizing: border-box;
}

.left-panel h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-top: 0;
}

.highlight {
    color: #ffd700; /* Use a bright color for the highlight */
}

.pre-header {
    color: #88aadd;
    font-size: 0.9rem;
}

/* --- Tab Navigation Styling --- */
.tabs-nav {
    display: flex;
    flex-direction: column;
}
button.tab-button.active .icon {
    background: #F9C608;
    border: none;}

.tab-button {
    background-color: #164987;
    color: #fff;
    border-radius: 4px;
    border: none;
    padding:0px;
    text-align: left;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle divider */
    display: flex;
    align-items: center;
}

.tab-button:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.05);
}

.tab-button.active {
    background-color: #fff; /* White background for active tab */
    color: #001f40; /* Dark text for active tab */
    font-weight: bold;
}

.tab-button .icon {
    background: #ffffff1a;
    font-size: 1.5rem;
    margin-right: 15px;
    text-align: center;
    padding: 15px 20px;
    border: 1px solid #6181A9;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
button.accordion-button.faq-header-btn:focus {
    box-shadow: none !important;
}
/* --- Right Panel (Image and Content) --- */
.right-panel {
    flex: 1; /* Take remaining 60% width */
    position: relative; /* Crucial for positioning the content box */
    padding: 20px;
    display: flex; /* Helps align content */
    align-items: center;
    justify-content: center;
}

.tab-content-container {
    position: relative;
    z-index: 10;
    border-radius: 15px !important; /* Bring content box above the image */
}

/* Content Box Styling (Initially Hidden by JS/Class) */
.tab-content {
    color: #333;
    display: none; /* Hide by default, show with JavaScript */
}
.right-panel .tab-content {
    height: 100%;
    width: 100%;
    min-height: 640px;
}
.tab-content.active {
    display: flex !important;
    flex-direction: column;
    justify-content: end;
}
.tab-content.active {
    display: block; /* Show the active content */
}
#customize{background-image: url('Optimized.webp') !important;}
#user-experience{background-image: url('Customize.webp') !important;}
#maintenance{background-image: url('Experience.webp') !important;}
#seo-optimized{background-image: url('maintance.webp') !important;}
div#responsive, #customize, #user-experience, #maintenance, #seo-optimized{
background-image: url('website.webp');
background-position: center;
background-size: cover;
padding: 20px;
border-radius: 15px;
}

.tab_contentmain p {
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 26px;
}
.tab_contentmain h2 {
    font-weight: 600;
    font-size: 26px;
}
.tab_contentmain {
    padding: 30px 20px;
    background: #ffffffc9;
    border-radius: 10px;
}
.tab-content h2 {
    color: #001f40;
    margin-top: 0;
}
/* --- Global Section Styling --- */
.web-discovery-section-grid {
    /* Apply the dark blue background from the logo grid image */
    color: #111111; /* Default text color */
    padding: 60px 20px;
}
/* --- Header Styling --- */
.header-content {
    margin-bottom: 50px;
}

.mini-tag {
    display: inline-block;
    background-color: white;
    color: #12224A;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8em;
    font-weight: bold;
    margin-bottom: 20px;
}

.mini-tag p {
    margin: 0;
}

.header-content h1 {
    font-size: 2.5em;
    font-weight: 800;
    margin: 0 0 15px 0;
}

.header-content .highlight {
    color: #FFC000; /* Yellow/Orange color for contrast */
}

.header-content .subtitle-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1em;
    opacity: 0.8;
}

/* --- Features Grid Layout --- */
.features-grid {
    display: grid;
    /* Create 3 columns: Feature | Center | Feature */
    grid-template-columns: 1fr 400px 1fr; 
    /* Create 2 rows: Top features | Bottom features */
    grid-template-rows: auto auto; 
    
    /* Apply the subtle border lines using gap and background */
    gap: 1px;
    background-color: rgba(255, 255, 255, 0.1); 
}

/* Ensure all grid items fill the gap background with the main color */
.feature-item, .center-placeholder {
    padding: 20px;
}

/* Positioning Features to match the 2x2 layout with a center column */
.feature-1 {
    grid-column: 1 / 2; /* Column 1 */
    grid-row: 1 / 2;    /* Row 1 */
    text-align: right; /* Content aligned right, same as screenshot */
}

.feature-2 {
    grid-column: 3 / 4; /* Column 3 */
    grid-row: 1 / 2;    /* Row 1 */
    text-align: left;  /* Content aligned left, same as screenshot */
}

.feature-3 {
    grid-column: 1 / 2; /* Column 1 */
    grid-row: 2 / 3;    /* Row 2 */
    text-align: right; /* Content aligned right */
    padding-top: 50px; /* Add padding to push it down from the line */
}

.feature-4 {
    grid-column: 3 / 4; /* Column 3 */
    grid-row: 2 / 3;    /* Row 2 */
    text-align: left;  /* Content aligned left */
    padding-top: 50px; /* Add padding to push it down from the line */
}

/* Center Placeholder Styling */
.center-placeholder {
    grid-column: 2 / 3; /* Column 2 (Center) */
    grid-row: 1 / 3;    /* Span both rows */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Remove vertical padding for a cleaner look through the center column */
    padding-top: 0;
    padding-bottom: 0;
}
.circle-content img {
    width: 180px;
}
/* The blue circle element in the center */
.circle-content {
    /* Replicate the circle's size and look */
    width: 250px;
    height: 250px;
    background-color: #2F4288; /* A slightly lighter blue for contrast */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle inner border */
    border-radius: 50%;
    
    /* Center the text inside the circle */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1.1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    
    /* Add the wavy border effect using pseudo-elements or box-shadow (using box-shadow here for simplicity) */
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.05), 0 0 0 30px rgba(255, 255, 255, 0.03);
}

/* Feature Item Content Styles */
.feature-item h3 {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
}

/* Number Box Styling (The blue circles 01, 02, 03, 04) */
.number-box {
    width: 55px;
    height: 55px;
    background-image: linear-gradient(120deg, #083A74 0%, #264BA0 100%);
        border: 2px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size:18px;
    color: white;
    margin-bottom: 15px;
}
.feature-item p {
    font-size: 14px !important;
    color: #666666;
    line-height: 24px;
}
.footer_icon a i{
font-size: 18px;
color: #fff;
margin: 0px !important;
}
.footer_icon  {
    /* float: left; */
    width: 44px;
    height: 44px;
    border-radius: 100px;
    display: flex;
    background-image: linear-gradient(120deg, #083A74 0%, #264BA0 100%);
    align-items: center;
    border: 1px solid #375C9C;
    display: flex;
    justify-content: center;
}
.contact_info li {
    display: flex;
    gap: 10px;
}
ul.list-unstyled.footer-links li, .contact-link{
    margin-top: 10px;
}
ul.list-unstyled.footer-links li a, .contact-link{
    text-decoration: none !important;
    margin-top: 10px;
}
footer h4{font-size: 22px;font-weight: 600;}
/* Override float for right-aligned items (1 and 3) */
.feature-1 .number-box,
.feature-3 .number-box {
text-align: right;
margin-left: auto;
}

/* Section Header Styles */
.services-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.subtitle {
    font-size: 14px;
    color: #e3b000; /* Yellow color for the bullet point and text */
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.subtitle::before {
    content: '•';
    font-size: 20px;
    margin-right: 5px;
    line-height: 1;
}

.main-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 60px;
    line-height: 1.2;
}

/* Services List and Item Styles */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 1px; /* Small gap to separate items, mimicking the divider line */
}

.service-number {
    margin-right: 10px;
    font-size: 24px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5); /* Lighter number color */
}

.service-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 0;
    z-index: 2; /* Ensure title is above the hidden content */
    /* Smooth transition for title to move up on hover */
    transition: transform 0.4s ease, color 0.4s ease;
}

/* Initial state for the hover content (hidden) */
.hover-content {
display: none;
    
    /* Smooth transition for the content reveal */
    transition: opacity 0.4s ease, visibility 0.4s ease;
}


/* Content Layout */
.content-text {
    flex: 2; /* Takes up more space for text */

}

.content-image {
    flex: 1; /* Takes up less space for the image */
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 8px; /* Optional: adds a slight curve to the image corners */
    margin-top: 40px;
}

.content-text h3
 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #e3b000;
}
.hover-content .content-image {
    width: 250px;
    height: 175px;
    object-fit: cover;
}
span.detail-tag {
    margin-right: 15px;
}
.content-text p {
    margin-bottom: 15px;
    color: #fff;
    width: 570px;
    line-height: 28px;
    font-size: 13px;
}

.content-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.content-text li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    color: #ffffff;
}

.content-text li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e3b000;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e3b000;
    color: #031336;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ffd700;
}

.detail-tag {
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    font-size: 12px;
    background-color: #1C5599;
    color: rgba(255, 255, 255, 0.8);
    transition: border-color 0.3s ease, color 0.3s ease;
}

.detail-tag:hover {
    border-color: #e3b000;
    color: #e3b000;
}

/* Styling for the Circular Arrow Icon */
.service-link-icon {
    transform: rotate(-45deg);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: #1C5599;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-link-icon:hover {
    background-color: #e3b000; /* Yellow background on hover */
    transform: rotate(45deg); /* Optional: a slight animation effect */
}

.service-link-icon i {
    color: #9AB4D3;
    font-size: 18px;
}

.service-link-icon:hover svg {
    color: #031336; /* Dark blue icon color when background is yellow */
}
/* --- Base Section Styles --- */
.process-section {
    background-color: #ffffff;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* --- Left Column Content Styles --- */
.left-content {
    /* Set a custom offset for the sticky content */
    top: 50px; 
    padding-right: 40px;
}

.subtitle {
    font-size: 14px;
    color: #4b4b4b;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 600;
}

.bullet {
    width: 8px;
    height: 8px;
    background-color: #e3b000; /* Yellow dot */
    border-radius: 50%;
    margin-right: 8px;
}
.highlight {
    color: #e3b000; /* Yellow highlight for 'Services Work' */
}

.description-text {
    font-size: 16px;
    color: #666;
    margin-top: 20px;
}

/* --- Circular Logo/Arrow Style --- */
.logo-circle {
    width: 150px;
    height: 150px;
    background-color: #e3b000; /* Yellow background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #031336;
    overflow: hidden;
    margin-bottom: 40px; /* Space below the circle */
}

.logo-circle i {
    font-size: 28px;
    transform: rotate(315deg); /* Rotates the arrow to point up-right */
}

/* Text circling around the logo - requires complex CSS for perfect alignment, 
   but this achieves a similar visual effect. */
.logo-text {
    position: absolute;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    /* Basic positioning for effect */
}
p.subtitle-text, .subtitle-text2 {
    color: #666666;
    width: 940px;
    margin: auto;
    margin-bottom: 25px;
}
.subtitle-text2{
    width: 1040px !important;
}
.logo-text.webdesign {
    top: 5px;
    left: 20px;
    transform: rotate(-30deg);
}

.logo-text.discovery {
    bottom: 5px;
    right: 20px;
    transform: rotate(150deg);
}
.step-box:hover .step-number{-webkit-text-stroke: 1.5px #ffd700; color: #ffd700 !important;   -webkit-text-fill-color: #ffd700; }
.step-number{
    font-size: 70px;              
       font-weight: 700;             
       color: transparent; 
       -webkit-text-stroke: 1.5px #C6C7C8; 
       -webkit-text-fill-color: transparent; 
   }
/* --- Right Column Process Boxes Styles --- */

/* The main container limits the visible height and enables scrolling */
.steps-container {
    /* Set a fixed height to show only 3 boxes and enable scrolling for the rest */
    max-height:580px; 
    overflow-y: scroll;
}

/* Custom scrollbar to match the design aesthetics (optional) */
.steps-container::-webkit-scrollbar {
    width: 6px;
}

.steps-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.step-box {
    gap: 80px;
    background-color: #f7f7f7;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
    position: relative;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
.step-box p{margin-bottom: 0px;}
/* Highlighted style for Step 01 */
.step-box.highlighted:hover{
    background: 
    linear-gradient(rgba(0, 0, 0, 0.785), rgba(0, 0, 0, 0.5)), 
    url("Consultati.webp") no-repeat center center/cover;
}
.step-box.highlighted2:hover{
    background: 
    linear-gradient(rgba(0, 0, 0, 0.858), rgba(0, 0, 0, 0.5)), 
    url("Growth.webp") no-repeat center center/cover;
}
.step-box.highlighted3:hover{
    background: 
    linear-gradient(rgba(0, 0, 0, 0.858), rgba(0, 0, 0, 0.5)), 
    url("Deployment.webp") no-repeat center center/cover;
}
.step-box.highlighted4:hover{
    background: 
    linear-gradient(rgba(0, 0, 0, 0.858), rgba(0, 0, 0, 0.5)), 
    url("Assurance.webp") no-repeat center center/cover;
}
.step-box.highlighted5:hover{
    background: 
    linear-gradient(rgba(0, 0, 0, 0.858), rgba(0, 0, 0, 0.5)), 
    url("Design.webp") no-repeat center center/cover;
}
.step-box.highlighted6:hover{
    background: 
    linear-gradient(rgba(0, 0, 0, 0.858), rgba(0, 0, 0, 0.5)), 
    url("Strategy.webp") no-repeat center center/cover;
}
.step-box.highlighted {
    transition: all 0.4s ease-in;
    overflow: hidden;
}

.step-box:hover .step-title,
.step-box:hover .step-description {
    color: #ffffff;
}

.step-box:hover .step-number {
    color: #e3b000 !important; /* Yellow number */
    opacity: 1;
}
.step-box {
    display: flex;
}
/* Step Number in the bottom-right corner */
.step-number {
    bottom: 10px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.08); /* Faded light gray */
    line-height: 1;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-title {
    font-size: 22px;
    font-weight: 500;
    color: #031336;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.step-description {
    font-size: 14px;
    color: #666;
    position: relative;
    z-index: 2;
}
.circle-container {
    position: relative;
    width: 200px;
    height: 200px;
  }

  /* Rotating text */
  .rotating-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: rotate 10s linear infinite;
  }

  .rotating-text img {
    width: 100%;
    height: 100%;
    max-width: 145px;
    object-fit: contain;
  }

  /* Center icon (fixed) */
  .center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fbc400; /* yellow circle */
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  button.accordion-button.faq-header-btn {
    line-height: 24px;
}
  .center-icon svg {
    width: 40px;
    height: 40px;
    stroke: #000;
    stroke-width: 3;
  }
/* --- Global Styles --- */
.industry-section {
    background-color: #031336; /* Deep blue background */
    min-height: 400px;
}

/* --- Bootstrap Accordion Overrides --- */
.accordion-flush .accordion-item {
    border: none; /* Remove default borders */
    background-color: transparent;
}

.accordion-header {
    margin: 0;
    padding: 0;
}
.accordion-button.industry-tab{
    font-size: 14px;
}
p.dummy-content {
    font-size: 12px;
}
/* The button styles to match your original "tab" design */
.industry-tab {
    /* Layout */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #1E5595; /* Tab background blue */
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    border:1px solid #4C74A3;
    box-shadow: none !important; 
    transition: background-color 0.3s ease;
}

.industry-tab:not(.collapsed) {
    /* Style when the accordion is OPEN */
    background-color: #174aa8; /* Slightly darker blue when active */
    color: #ffffff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.industry-tab:hover {
    background-color: #174aa8;
}

/* --- Icon Rotation (Chevron Down) --- */
.accordion-icon {
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.industry-tab:not(.collapsed) .accordion-icon {
    transform: rotate(180deg); /* Flip icon when open */
}

/* --- Accordion Body (Content Area) Styling --- */
.accordion-body {
    background-color:#1e5595 !important; /* Same background as the tab for continuity */
    color: #cccccc;
    padding: 20px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.accordion-body.faq-active-body p {
    line-height: 26px;
    font-size: 13px;
    color: #fff;
}
.accordion-button:not(.collapsed){
    background-color:#1e5595;
     margin-bottom: 0px !important;
     border-top-right-radius: 10px !important;
     color: #fff;
     border: none;
    border-top-left-radius: 10px !important;
}
.accordion-body{margin-bottom: 10px;}
.accordion-body .dummy-content {
    margin: 0;
    line-height: 1.5;
}

/* Remove margin between accordion items in the row grid */
.industry-accordion-item {
    margin-bottom: 0; 
}
/* ========================================= */
/* 1. QUALITY SERVICES SECTION (Hover Effect) */
/* ========================================= */

.wd-services-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #031336; /* Deep blue background */
    color: #ffffff;
}

.wd-subtitle {
    font-size: 14px;
    color: #e3b000;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.wd-subtitle::before {
    content: '•';
    font-size: 20px;
    margin-right: 5px;
    line-height: 1;
}

.wd-main-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
}

.wd-services-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.wd-service-item {
    position: relative;
    padding: 30px 40px;
    background-color: #071c41;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    overflow: hidden;
    transition: background-color 0.4s ease;
}

.wd-service-item:hover {
    background-color: #0b2a64;
}

.wd-service-details-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 60px;
    position: relative;
    z-index: 2;
    transition: opacity 0.4s ease, transform 0.4s ease; /* For hiding on hover */
}

.wd-service-item .wd-service-number {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 24px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}

.wd-service-item .wd-service-title {
    font-size: 28px;
    font-weight: 600;
    margin-right: auto;
    z-index: 2;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.wd-detail-tags-group {
    display: flex;
    gap: 15px;
    margin-right: 30px;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.wd-service-item:hover .wd-detail-tags-group {
    opacity: 0;
}

.wd-detail-tag {
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: border-color 0.3s ease, color 0.3s ease;
}

.wd-service-link-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #0d3886;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.wd-service-link-icon:hover {
    background-color: #e3b000;
    transform: rotate(45deg);
}

.wd-service-link-icon svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.wd-service-link-icon:hover svg {
    color: #031336;
}

.wd-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #031336;
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding: 30px 40px;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.wd-service-item:hover .wd-hover-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wd-service-item:hover .wd-service-details-container {
    opacity: 0;
    transform: translateY(-50px);
}

.wd-service-item:hover .wd-service-title { /* Hides the title when content expands */
    opacity: 0;
}

.wd-content-text {
    flex: 2;
    padding-right: 40px;
}

.wd-content-image {
    flex: 1;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 40px;
}

.wd-content-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #e3b000;
}

.wd-content-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.wd-content-text li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    color: #ffffff;
}

.wd-content-text li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e3b000;
}

.wd-cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e3b000;
    color: #031336;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

/* ========================================= */
/* 2. HOW WE WORK/PROCESS SECTION            */
/* ========================================= */

.wd-process-section {
    background-color: #ffffff;
    padding-top: 80px;
    padding-bottom: 80px;
}

.wd-left-content {
    top: 50px; 
    padding-right: 40px;
}

.wd-bullet {
    width: 8px;
    height: 8px;
    background-color: #e3b000;
    border-radius: 50%;
    margin-right: 8px;
}

.wd-section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    color: #031336;
}

.wd-highlight {
    color: #e3b000;
}

.wd-description-text {
    font-size: 16px;
    color: #666;
    margin-top: 20px;
}

.wd-logo-circle {
    width: 150px;
    height: 150px;
    background-color: #e3b000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #031336;
    overflow: hidden;
    margin-bottom: 40px;
}

.wd-logo-circle i {
    font-size: 28px;
    transform: rotate(315deg);
}

.wd-logo-text {
    position: absolute;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.wd-steps-container {
    max-height: 700px; 
    overflow-y: scroll;
    padding-right: 15px;
}

.wd-step-box {
    background-color: #f7f7f7;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
    position: relative;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.wd-step-box.wd-highlighted {
    background-color: #031336;
    color: #ffffff;
    overflow: hidden;
}

.wd-step-box.wd-highlighted .wd-step-title,
.wd-step-box.wd-highlighted .wd-step-description {
    color: #ffffff;
}

.wd-step-box.wd-highlighted .wd-step-number {
    color: #e3b000;
    font-size: 80px;
    right: 0;
    top: 0;
    opacity: 1;
}

.wd-step-number {
    position: absolute;
    right: 30px;
    bottom: 10px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.08);
    line-height: 1;
    z-index: 1;
    transition: all 0.3s ease;
}

.wd-step-title {
    font-size: 22px;
    font-weight: 700;
    color: #031336;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.wd-step-description {
    font-size: 15px;
    color: #666;
    position: relative;
    z-index: 2;
}


/* ========================================= */
/* 3. OUTLINE NUMBER STYLING (Image 8e7f34.png)*/
/* ========================================= */

.wd-outline-number {
    font-family: Arial, sans-serif;
    font-size: 150px;
    font-weight: 800;
    color: transparent; 
    -webkit-text-stroke: 1.5px #ffffff;
    -webkit-text-fill-color: transparent; 
}


/* ========================================= */
/* 4. INDUSTRY TABS / ACCORDION SECTION      */
/* ========================================= */

.wd-industry-section {
    background-color: #031336;
}

.wd-industry-accordion-item {
    border: none;
    background-color: transparent;
}

.wd-industry-tab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #0d3886;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    border: none;
    box-shadow: none !important; 
    transition: background-color 0.3s ease;
}

.wd-industry-tab:not(.collapsed) {
    background-color: #174aa8;
    color: #ffffff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.wd-industry-tab:hover {
    background-color: #174aa8;
}

.wd-accordion-icon {
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.wd-industry-tab:not(.collapsed) .wd-accordion-icon {
    transform: rotate(180deg);
}

.wd-accordion-body {
    background-color: #0d3886;
    color: #cccccc;
    padding: 20px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wd-dummy-content {
    margin: 0;
    line-height: 1.5;
}


/* ========================================= */
/* 5. FAQ SECTION (Two Columns)              */
/* ========================================= */

.wd-faq-section {
    background-color: #f8f9fa;
}

.wd-faq-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.wd-faq-header-btn {
    width: 100%;
    padding: 18px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background-color: #ffffff;
    border: none;
    box-shadow: none !important;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.wd-faq-header-btn i {
    font-size: 14px;
    color: #0d3886;
    margin-left: 15px;
}

.wd-faq-header-btn:not(.collapsed) {
    background-color: #0d3886;
    color: #ffffff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.wd-faq-header-btn:not(.collapsed) i {
    color: #ffffff;
    transform: rotate(0deg) !important; 
}

.wd-faq-active-body {
    background-color: #0d3886;
    color: #cccccc;
    padding: 20px 25px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.wd-accordion-body {
    background-color: #f7f7f7; 
    color: #666;
    padding: 15px 25px;
}
.client_name{margin-bottom: 0px;}
.profile{font-size: 12px;}
  /* Rotation keyframe */
.circle-box {
    position: relative;
    width: 100%;
    height: 100%;
    /* This box contains all the circles */
}

.circle {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.text-content img {
    width: 170px;
}
.outer-circle-1,
.outer-circle-2,
.outer-circle-3 {
    background: transparent;
    border: 2px solid #E0E7EE;
}

.outer-circle-1 {
    width: 290px;
    height: 290px;
    /* Keyframe Animation */
    animation: pulse 4s infinite ease-in-out;
    animation-delay: 0s; /* Start immediately */
}

.outer-circle-2 {
    width: 310px;
    height: 310px;
    /* Keyframe Animation - Slight delay/different duration for variety */
    animation: pulse 4s infinite ease-in-out;
    animation-delay: 0.5s;
}

.outer-circle-3 {
    width: 330px;
    height: 330px;
    /* Keyframe Animation - Slight delay/different duration for variety */
    animation: pulse 4s infinite ease-in-out;
    animation-delay: 1s;
}

/* --- Blue Center Circle and Text --- */
.inner-circle-blue {
    width: 240px;
    height: 240px;
    background-color: #004d99; /* Deep Blue color */
    display: flex;
    justify-content: center;
    align-items: center;
    /* The blue circle itself doesn't move in the video, so no animation here */
}

.text-content {
    text-align: center;
    color: white;
    font-family: sans-serif; /* A clear, modern font */
    line-height: 1.1;
}

.web-design {
    display: block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2px; /* Space between the lines of text */
}

.discovery {
    display: block;
    font-size: 40px;
    font-weight: 900;
}

.animation-container {
    position: relative;
    width: 300px;
    left: 52px;
    top: 150px;
    height: 300px;
}

/* --- The Keyframe Animation --- */
/* This keyframe defines the 'breathing' or 'pulsing' effect of the outer circles. */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05); /* Slight expansion */
        opacity: 0.8; /* Slight fade */
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}
  @keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  .wd-review-slider-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Slick overrides for custom arrows */
.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
    z-index: 10;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #fff; /* White background for the circle */
    border: 1px solid #ccc; /* Light border */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-slider .slick-next {
    background-color: #1a4f9d; /* Dark blue background for the next button */
    border: none;
    right: 10px; /* Position it from the right */
}

.testimonial-slider .slick-prev {
    left: 10px; /* Position it from the left */
}

/* Hiding the default slick arrow content and using a custom look */
.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before {
    font-family: 'slick';
    font-size: 18px;
    line-height: 1;
    opacity: 1;
    color: #1a4f9d; /* Blue color for prev arrow */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.testimonial-slider .slick-next:before {
    color: #fff; /* White color for next arrow */
}

/* CARD STYLING */
.slide-card {
    margin: 10px; /* Space between cards in the slider view */
    border-radius: 8px;
    overflow: hidden;
    height: auto; /* Allow height to adjust */
    box-shadow: 0px -1px 10px rgb(66 66 66 / 10%);
}

/* White Card Style */
.slide-card.white {
    background-color: white;
    color: #333;
    padding: 20px;
}

.slide-card.white .client-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* Dark Blue Card Style (Featured Testimonial) */
.slide-card.dark-blue {
    background-color: #fff; /* Dark blue background */
    color: #000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px; /* Ensures a consistent height for highlighted card */
}

.slide-card.dark-blue .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    margin: 20px -20px -20px -20px; /* Stretches the bar across the bottom */
}


/* General client details */
.client-details {
    line-height: 1.2;
}

.client-name {
    margin-bottom: 4px;
    font-weight: bold;
    font-size: 16px;
}

.client-tag {
    font-size: 13px;
    opacity: 0.8;
}

/* Rating Stars */
.rating-stars {
    font-size: 22px;
    margin-bottom: 8px;
    color: #ffb900;
}

.rating-stars.yellow {
    color: #ffc107; /* Yellow/Orange star color for light cards */
}
/* --- CUSTOM SLIDER ARROWS --- */

/* Base styling for both custom arrows */
.testimonial-slider .custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 35px;
    height: 35px;
    border-radius: 50%; /* Makes them circular */
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1; /* Aligns the arrow text */
    text-align: center;
    padding: 0;
    transition: all 0.3s;
}

/* Positioning the arrows */
.testimonial-slider .slick-prev {
    left: 20px;
    border: 1px solid #ccc; /* Light border for the previous button */
    background-color: white; /* White background */
    color: #1a4f9d; /* Dark blue arrow color */
}
.slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover {
    background-color: #fff;
    color: #000000 !important;}
.testimonial-slider .slick-next {
    right: 20px;
    border: none; /* No border for the next button */
    background-color: #1a4f9d; /* Dark blue background */
    color: white; /* White arrow color */
}

/* Hide the default Slick text */
.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before {
    display: none;
}
/* Card content */
.card-content p {
    font-size: 14px;
    line-height: 24px;
    margin: 0;
}
.box_bottom {
    PADDING: 20PX;
    background: #1E5594;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
button.accordion-button {
    border: 1px solid #4C74A2;
    margin-bottom: 15px;
}
.logo-box img {
filter: opacity(0.5);
width: 120px;
}
.logo-box:hover img{filter: opacity(1);}
.accordion-flush .accordion-body{
padding-top: 0px !important;
}
.accordion-flush .accordion-body p{color: #fff;}
.box_bottom p {
    font-size: 13px;
    font-weight: 300 !important;
}
.box_bottom p {
    font-size: 13px;
    width: 500px;
}
.icon_area i{
color: #001f40;
}
.icon_area a{
    cursor: pointer !important;}
.icon_area:hover{background: #fff;}
.icon_area {
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    display: flex;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    background: #FFB900;
    border-radius: 100px;
}
.blog_title{
 font-size: 14px;
 color: #000; 
 text-decoration: none;  
}
.blog_content h4 {
    font-size: 22px;
    font-weight: 600;
}
hr{border-bottom: 1px solid #CCCCCC !important;}
.blog_content{
    border-top: 0px;
    border:1px solid #CCCCCC;
    padding: 20px; 
  border-bottom-right-radius: 10px; 
  border-bottom-left-radius: 10px; 
}
/* --- Section Background --- */
.seo-tabs-section {
    background-color: var(--dark-teal);
    padding: 30px 15px;
}

/* --- Main Category Tabs Styling --- */
.main-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.footer_bottom {
    margin-top: 10px;
}
.webdesign_tab .main-tabs{gap: 0px !important;    justify-content: center !important;}
.webdesign_tab .main-tab {
    border-radius: 0px;
    margin: 0px !important;
    FONT-SIZE: 16PX;    
    border: none !important;
}
.maincontent_web_tab h4 {
    font-size: 34px;
    font-weight: 600;
    color: #fff;
}
.maincontent_web_tab p {
    color: #d5d0d0;
    width: 1100px;
    margin: auto;
    font-size: 15px;
    line-height: 28px;
}
.main-tab {
  background-color: #396293;
    color: white;
    border: 1px solid #204949;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
    border-radius: 4px;
    white-space: nowrap;
    margin-right: 10px;
}

/* Active tab styling (like 'Organic SEO' in the image) */
.main-tab.active {
    background-color: white;
    color: #0b1e1e;
    border-color: white;
}

.main-tab:hover:not(.active) {
    background-color: #ffffff;
    color: #000;
}

/* --- Content Styling --- */
/* Hide all content by default */
.tabsum .tab-content {
    display: none;
    padding-top: 10px;
}

/* Show only the active content */
.tabsum .tab-content.active {
    display: block;
}

.service-row {
    align-items: center;
    margin-bottom: 10px;
    display: flex; /* Helps align the links */
    flex-wrap: wrap; /* Allows links to wrap to the next line */
    font-size: 14px;
}

/* Styling for the service links (a tags) */
.service-row a {
    color: #fff; /* A lighter, contrasting color for the links */
    text-decoration: none; /* Remove underline */
    padding: 5px 10px;
    margin: 3px 5px; /* Spacing between links */
    transition: color 0.3s;
}

/* Remove the border-right from the very last item in the row for a cleaner look */
.service-row a:last-of-type {
    border-right: none;
}

.service-row a:hover {
    color: white; /* Brighter white on hover */
}

footer a.btn.btn-outline-light{
font-size: 12px;
}
.subscription-container {
    width: 520px;
}
/* --- Form Layout (Input and Button) --- */
.subscribe-form {
    display: flex;
    gap: 10px; /* Space between the input and button */
    margin-bottom: 20px;
}

/* Email Input Field Styling */
.email-input {
    flex-grow: 1;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    color: #fff !important;
    background-color: #ffffff38;
    outline: none;
}
.social-links a {
    padding: 12px 28px !important;
    margin-left: 12px;
}   
address{
    color: #fff !important;
    font-size: 14px;
    line-height: 26px;
}
/* Placeholder text color */
.email-input::placeholder {
    color: #a0a0a0;
}

/* Submit Button Styling */
.submit-button {
    padding: 10px 34px;
    background-color: white;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

/* Button hover effect */
.submit-button:hover {
    background-color: #eee;
}

/* --- Checkbox Styling --- */
.checkbox-area {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between checkbox and text */
}

/* Hides the default browser checkbox */
.newsletter-checkbox {
    -webkit-appearance: none;
    margin: 0;
    padding: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #F9C608;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    background-color: transparent !important;
}
.newsletter-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    width: 5px; /* Width of the tick mark's long side */
    height: 10px; /* Height of the tick mark's short side */
    border: solid #F9C608; /* Use the desired color for the tick */
    border-width: 0 2px 2px 0; /* Only right and bottom borders */
    transform: translate(-50%, -50%) rotate(45deg); /* Center it and rotate to form a check */
    background-color: transparent; /* Ensure no background fill */
}
.copyright p{
    margin-top: 20px;
font-size: 13px;
text-align: right;
}
/* Custom Checkbox Appearance when CHECKED */

/* Custom Checkmark (small tick) for the checked state */
/* Checkbox label text style */
.checkbox-label {
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}
.service-details-container{justify-content: space-between;}
.accordion-body .dummy-content {
    margin: 0;
    line-height: 20px;
}
.blogbox.mt-3 {
    margin-top: 40px !important;
}
.header {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}
.banner{
    margin-top: -120px;}
main.hero.container.p-auto {
    padding-top: 180px;
}
button.btn-close{
    position: absolute;
    right: 10px;
    
}
button.btn-close{
    color: #000;
}
.hover_btn{
transition:all 0.3s ease;
}
.faq-header-btn i {
    color: #0d3f8d; /* your default color */
    transition: color 0.3s ease;
  }

  /* When accordion item is open, make icon white */
  .faq-header-btn:not(.collapsed) i {
    color: #fff;
  }
.hover_btn:hover{
    background:#FFB900 !important;
    border-color:#FFB900 !important;
    color:#fff;}
    /* Dropdown styling */
.custom-dropdown {
  background-color: #40699d;
  border: none;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
}

.custom-dropdown .dropdown-item {
  color: #fff;
  font-weight: 500;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.custom-dropdown .dropdown-item:hover {
  background-color: #fff;
  color: #0d3f8d;
  padding-left: 25px;
}
,
a:hover,
a:focus {
  text-decoration: none !important;
}
.feature-card.main-feature-card {
    background: #1e518e;
    border-color: #366AA6;
}
.main-feature-card .feature-icon img {
     margin-bottom: 0px; 
    width: 30px;
}
.hero-content h2 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
}
.desicription_main {
    width: 570px;
}
.main-feature-card .feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: #fff;
}
.main-feature-card h3 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 600;
    margin: 20px 0px;
}
.main-feature-card p {
    font-size: 12px;
    color: #ffffff;
    line-height: 24px;
    margin-bottom: 20px !important;
}
button.entire_btn.btn_yellow {
    color: #fff !important;
}
/*🧠 Show dropdown on hover for desktop */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  
  /* Optional: keep dropdown visible while hovering inside */
  .nav-item.dropdown:hover > .nav-link {
    color: #0d3f8d;
  }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .custom-dropdown .dropdown-item {
    color: #4e4e4e !important;}
    a.dropdown-item {
    color: #000 !important;
    font-size: 13px;
    padding-left: 0px !important;
}

.navbar-nav .dropdown-menu {
    padding:0px;
    position: static;
    background: transparent;
    box-shadow: none !important;
}
    p.subtitle-text, .maincontent_web_tab p{width:auto;}
    .logo-box img{width:80px;}
    .wd-carousel-controls {
        text-align: center;
    }
}
@media (max-width: 767px) {
    .main-tab{padding:8px 16px !important;}
    header .entire_btn{
    background-color: #174b94 !important;
    color: #fff !important;
    }
    
    .navbar-nav .nav-link.active, .navbar-nav .nav-link:hover{
    color: #174b94 !important;
    }
    .navbar-nav .nav-link {color: #1c1c1c !important;}
    main.hero.container {
    padding-top: 115px !important;
}
    .banner {
    margin-top: -85px;}
    .copyright p{font-size: 12px;text-align: center;}
   footer .navbar-brand.logo img {
        width: 140px;
        margin-bottom: 20px !important;
        display: block;
        margin: auto;
    }
    .bottom_area {
    padding-top: 20px;}
    .social-links a {
    padding: 8px 22px !important;
    margin-left: 8px;
}
    .partners-section h2, .partners-section h3{font-size: 24px;}
    .service-details-container{gap: 10px; flex-direction: column; justify-content: space-between;align-items: flex-start !important;}
    .wd-review-card {
        padding: 25px;
    }
    .wd-reviewer-name {
        font-size: 16px;
    }
    .wd-reviewer-role {
        font-size: 13px;
    }
    .wd-star-rating {
        font-size: 16px;
    }
    .wd-review-text {
        font-size: 14px;
    }
}
/* --- Responsive Adjustments --- */
@media (max-width: 991.98px) {
    .left-content {
        padding-right: 15px;
        /* Remove sticky on smaller screens */
        position: static !important; 
        top: auto !important;
    }
    
    .section-title {
        font-size: 36px;
    }

    .steps-container {
        /* Remove max-height and scrolling on smaller screens for better UX */
        max-height: none;
        overflow-y: visible;
        padding-top: 20px;
        padding-right: 0;
    }
}
/* Media Query for responsiveness */
@media (max-width: 992px) {
    .main-title {
        font-size: 36px;
    }

    .service-title {
        font-size: 24px;
    }

    .content-text {
        padding-right: 0;
        padding-bottom: 20px;
    }

    .content-image {
        max-width: 100%;
        margin-top: 20px;
    }
}
/* Responsive adjustments */
@media (min-width: 1350px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1420px;
    }
}
@media (max-width: 992px) {
    .main-tabs{flex-wrap:wrap;}
    .logo-item{width: 250px;}
    .Sales_info{gap:20px;}
    .content-text .d-flex{flex-direction: column;}
    .navbar-brand.logo img{
        width: 150px;
    }
    .header-section {
       display:block;
    }
    .stats-item {
        border-top: 1px solid var(--border-color);
        padding-top: 1rem;
    }
    .box_bottom p{
        width: auto;
    }
}
.header1,
.header2 {
  display: none;
}

@media (max-width: 769px){
    .navbar-collapse{
        transform: translateX(100%);
    opacity: 0;
        transition: transform 0.4s ease !important;
        opacity 0.4s ease !important;}
          .navbar-collapse.show {
    transform: translateX(0);
    opacity: 1;
  }
    .logo-grid{gap:20px;}
    .box_bottom p{font-size:12px;}
    span.detail-tag {
    margin-right: 8px;
}
    .Sales_info{gap:20px;}
    button.entire_btn.mob_mar {
    margin-bottom: 15px;
}
    .logo-box img{
        width: 90px;
    }
    .navbar {
    padding: 10px 0px;}
    .header-section{gap: 10px;flex-direction: column;}
    .webdesign_tab .main-tabs{flex-direction: row !important;flex-wrap: wrap;}
    .main-tabs {
    display: flex;
    flex-direction: column;}
    .subscription-container, .maincontent_web_tab p{
        width: auto;
    }
    .subscribe-form{
        flex-wrap:wrap;
    }
    .bottom_area{
        display: block !important;
    }
    button.accordion-button.faq-header-btn{
        font-size: 14px;
    }
    .accordion-body.faq-active-body p {
        line-height: 22px;
        font-size: 12px;}
        .circle-container {
    position: relative;
    width: 120px;
    height: 120px;
}
.blogbox {
    margin-top: 20px !important;
}
.blog_content h4 {
    font-size: 18px;
    line-height: 26px;}
    .blog_content p {
  font-size: 12px;}
.portfolio_img
 {
    margin-top: 20px;
}
.box_bottom {
    flex-direction: column;
}
.maincontent_web_tab h4 {
    font-size: 26px;}
.circle-container img{
    width: 80px;
      position: relative;
        z-index: 999;
}
    .subtitle-text2, .hero-description, p.subtitle-text, .subtitle-text2, .feature-item p, .description-text, .maincontent_web_tab p{
        width: auto !important;
        font-size: 12px !important;
        line-height: 24px !important;
    }
    .entire_btn, .entire_btn2, .entire_black{
    font-size: 13px;
    }
    .sec_title br{display: none;}
    .sec_title {
        line-height: 32px !important;
        font-size: 24px !important;}
    .about_us p {
        font-size: 12px;
        line-height: 24px;
    }
    .about_us h4 {
        font-size: 20px;
        line-height: 32px;}
    .about_content{padding-left: 0px;}
    .step-number {
        bottom: 10px;
        font-size: 40px;}
    .step-description {
        font-size: 12px;}
    .step-box{
        padding: 30px 20px;
        gap: 10px;
    }
}
@media (max-width: 569px) {
        .circle-container{
            width:80px !important;
            height:80px !important;
        }
    .hero-buttons {
        display: block;
        margin-bottom:10px
    }
    div#navbarNavAltMarkup {
       position: fixed;
        width: 331px;
        transition: right 0.4s ease !important;
        height: 100vh;
        top: -11px;
        z-index: 999;
        border-radius: 0px;
        right: 0px;
    }
    .features-grid {
        display: block;}
    .animation-container{
    display: none;
    }
    .p-auto{
        padding: 40px 15px;
    }
}