/* this color we user before : #007bff and  #ff6b00*/
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Add to your existing CSS */

/* Ensure smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Adjusts scroll position to account for fixed navbar */
}
/* Fix z-index layering */
.top-bar {
    position: relative;
    z-index: 1001; /* Keep top bar above */
}

@media (max-width:768px){

.top-bar .container{
    display:flex;
    justify-content:center;
    align-items:center;
    gap: 0px !important;;
    padding:0 !important;
    text-align:center;
}

.top-bar-left,
.top-bar-right{
    width:auto;
    padding:0 !important;
}

}

.navigation ul {
    position: relative;
    z-index: 999;
    background: white; /* Ensure background is solid */
}

/* Ensure mobile menu doesn't disappear */
.navigation ul.active,
.navigation ul.show {
    display: flex !important;
}

/* Fix for any overlapping issues */
.header, 
.top-bar, 
.main-nav {
    pointer-events: auto; /* Ensure clicks are captured */
}

/* Make sure clickable areas are properly sized */
.top-bar-left span,
.top-bar-left a {
    display: inline-block;
    padding: 5px 0;
    cursor: pointer;
}
/* Update Main Navigation Styles for better sticky behavior */
.main-nav {
    background: white;
    padding: 20px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: all 0.3s ease;
}

/* Add a class for when navbar is scrolled */
.main-nav.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

/* Ensure the top bar stays above content */
.top-bar {
    background: linear-gradient(135deg, #1a2b4c 0%, #0f1a2f 100%);
    color: white;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 3px solid #ff6b00;
    position: relative;
    z-index: 1001;
}
/* navbar section */
/* Fix for navbar display issues */
.main-nav {
    background: white;
    padding: 20px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: all 0.3s ease;
}

.navigation ul {
    display: flex !important;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.navigation ul li {
    display: inline-block;
}

.navigation a {
    color: #1a2b4c;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
    display: block;
}

/* Logo area styling */
.logo-area {
    display: flex;
    align-items: center;
}

.logo-area a {
    display: inline-block;
}

.logo-area img {
    max-height: 60px;
    width: auto;
    display: block;
}

/* Ensure proper z-index */
.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    font-size: 28px;
    color: #23adeb;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .navigation ul {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 1000;
        flex-direction: column;
        gap: 15px;
    }
    
    .navigation ul.show,
    .navigation ul.active {
        display: flex !important;
    }
    
    .navigation ul li {
        width: 100%;
        text-align: center;
    }
}
/* navbar section */


/* Adjust hero section to account for fixed navbar */
.hero-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 50%, #f5f0ff 100%);
    padding: 30px 0 50px !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
    margin-top: 0; /* Remove any margin */
}



/* Add padding to sections to account for fixed navbar when scrolling to anchors */
section {
    scroll-margin-top: 80px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar Styles */
.top-bar {
    background: linear-gradient(135deg, #1a2b4c 0%, #0f1a2f 100%);
    color: white;
    padding: 0px 0;
    font-size: 14px;
    border-bottom: 3px solid #ff6b00;
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left span {
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
}

.top-bar-left i, .top-bar-right i {
    margin-right: 8px;
    color: #ff6b00;
    font-size: 16px;
}
.top-bar-left a, .top-bar-right a {
  
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}
.top-bar-left a:hover, .top-bar-right a:hover {
    color: #ff6b00 ;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.google-translate {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 30px;
}

.google-translate i {
    color: #ff6b00;
}

.language-select {
    background: transparent;
    color: white;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 13px;
    outline: none;
}

.language-select option {
    background: #1a2b4c;
    color: white;
}

.dsp-login {
    color: white;
    text-decoration: none;
    padding: 5px 15px;
    border: 2px solid #ff6b00;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dsp-login:hover {
    background: #ff6b00;
    color: #1a2b4c;
    transform: translateY(-2px);
}

.register-btn {
    background: #23adeb;
    color: white;
    text-decoration: none;
    padding: 5px 18px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 2px solid #23adeb;
}

.register-btn:hover {
    background: transparent;
    color: #23adeb;
    border-color: #23adeb;
    transform: translateY(-2px);
}

/* Main Navigation Styles */
.main-nav {
    background: white;
    padding: 20px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    flex-direction: column;
    position: relative;
}
.logo-area img {
    height: 70px;
}

/* Laptop */
@media (max-width: 1200px) {
    .logo-area img {
        height: 50px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .logo-area img {
        height: 40px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .logo-area img {
        height: 40px;
    }
}

.logo-area::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #23adeb, #ff6b00);
    border-radius: 3px;
}

.logo {
    color: #1a2b4c;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2;
    background: linear-gradient(135deg, #23adeb, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    color: #666;
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 2px;
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.navigation a {
    color: #1a2b4c;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.navigation a:hover,
.navigation a.active {
    color: #23adeb;
}

.navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #23adeb, #ff6b00);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.navigation a:hover::after,
.navigation a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 28px;
    color: #23adeb;
    cursor: pointer;
}

/* Hero Section Styles - Increased Height */
.hero-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 50%, #f5f0ff 100%);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    margin-bottom: 25px;
}

.badge-text {
    background: linear-gradient(135deg, #23adeb 0%, #ff6b00 100%);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0,123,255,0.2);
}

.hero-title {
    font-size: 52px;
    color: #1a2b4c;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 800;
}

.highlight {
    background: linear-gradient(135deg, #23adeb, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(0,123,255,0.2), rgba(255,107,0,0.2));
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    font-size: 20px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-primary {
    background: #23adeb;
    color: white;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid #23adeb;
    box-shadow: 0 15px 30px rgba(0,123,255,0.3);
}

.btn-primary:hover {
    background: transparent;
    color: #23adeb;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,123,255,0.2);
}

.btn-secondary {
    background: transparent;
    color: #1a2b4c;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid #ff6b00;
}

.btn-secondary:hover {
    background: #ff6b00;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255,107,0,0.3);
}

.service-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.service-icon-wrapper {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #23adeb, #ff6b00) border-box;
}

.service-item:hover .service-icon-wrapper {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 40px rgba(0,123,255,0.2);
}

.service-icon-wrapper i {
    font-size: 42px;
    background: linear-gradient(135deg, #23adeb, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-item span {
    font-size: 16px;
    font-weight: 600;
    color: #1a2b4c;
    letter-spacing: 1px;
}

/* Hero Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,123,255,0.1), rgba(255,107,0,0.1));
    z-index: 1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 50px;
    left: -50px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 150px;
    right: 10%;
    background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(0,123,255,0.1));
}

/* Featured Services Section Styles */
.featured-services {
    padding: 50px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    color: #23adeb;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: inline-block;
    background: linear-gradient(135deg, rgba(0,123,255,0.1) 0%, rgba(255,107,0,0.1) 100%);
    padding: 8px 25px;
    border-radius: 50px;
    position: relative;
}

.section-title {
    color: #1a2b4c;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.title-underline {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #23adeb, #ff6b00, #23adeb);
    margin: 0 auto;
    border-radius: 5px;
    position: relative;
    background-size: 200% auto;
    animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Responsive adjustments for section header */
@media (max-width: 768px) {
    .section-subtitle {
        font-size: 16px;
        padding: 6px 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 30px;
    }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cards per row on desktop */
    gap: 30px;
    margin-bottom: 60px;
}

/* Responsive breakpoints for 8 cards */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 cards per row on tablet */
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row on mobile */
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 card per row on small mobile */
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Optional: If you want to enable descriptions later, uncomment this */
/*
.service-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 10px 0 15px;
    padding: 0 10px;
    min-height: 60px;
}
*/

.service-card {
    background: white;
    border-radius: 20px;
    padding: 15px 25px 15px !important;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,123,255,0.1);
}
.service-card img{
    height: 150px !important;;
}
 /* service card  */
 /* Complete Service Card CSS - No Rotation */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 45px 25px 35px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,123,255,0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #007bff, #ff6b00);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 30px 50px rgba(0,123,255,0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, rgba(0,123,255,0.08) 0%, rgba(255,107,0,0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    border: 3px dashed #007bff;
    position: relative;
}

.service-card:hover .service-icon {
    border-color: #ff6b00 !important;
    transform: none !important; /* NO ROTATION */
}

.service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1) !important; /* ONLY SCALE, NO ROTATION */
}

.service-title {
    color: #1a2b4c;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    background: linear-gradient(135deg, #007bff, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #007bff, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 10px 25px;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #007bff, #ff6b00);
    border-image-slice: 1;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #ff6b00);
    transition: width 0.4s ease;
    z-index: -1;
}

.read-more:hover {
    -webkit-text-fill-color: white;
    border-color: transparent;
}

.read-more:hover::before {
    width: 100%;
}

.read-more i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(8px);
}
/* Service Card Styles */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 45px 25px 35px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,123,255,0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #007bff, #ff6b00);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 50px rgba(0,123,255,0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Service Icon Styles - REMOVED ALL HOVER TRANSFORMS */
.service-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, rgba(0,123,255,0.08) 0%, rgba(255,107,0,0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    border: 3px dashed #007bff;
    position: relative;
    overflow: hidden;
}

/* REMOVED rotateY(180deg) on hover */
.service-card:hover .service-icon {
    border-color: #ff6b00;
    /* transform: rotateY(180deg);  <-- REMOVED THIS LINE */
}

/* Image styles - NO HOVER EFFECT */
.service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.4s ease;
}

/* REMOVED scale and rotate on hover */
.service-card:hover .service-icon img {
    /* transform: scale(1.1) rotateY(180deg);  <-- REMOVED THIS LINE */
    transform: scale(1.1); /* Just scale up slightly, no rotation */
}

.service-title {
    color: #1a2b4c;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    background: linear-gradient(135deg, #007bff, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #007bff, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 10px 25px;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #007bff, #ff6b00);
    border-image-slice: 1;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #ff6b00);
    transition: width 0.4s ease;
    z-index: -1;
}

.read-more:hover {
    -webkit-text-fill-color: white;
    border-color: transparent;
}

.read-more:hover::before {
    width: 100%;
}

.read-more i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(8px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #23adeb, #ff6b00);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 50px rgba(0,123,255,0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, rgba(0,123,255,0.08) 0%, rgba(255,107,0,0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    border: 3px dashed #23adeb;
    position: relative;
}

.service-card:hover .service-icon {
    border-color: #ff6b00;
    transform: rotateY(180deg);
}

.service-icon i {
    font-size: 52px;
    background: linear-gradient(135deg, #23adeb, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1) rotateY(180deg);
}

.service-title {
    color: #1a2b4c;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    background: linear-gradient(135deg, #23adeb, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    padding: 0 10px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #23adeb, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 10px 25px;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #23adeb, #ff6b00);
    border-image-slice: 1;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #23adeb, #ff6b00);
    transition: width 0.4s ease;
    z-index: -1;
}

.read-more:hover {
    -webkit-text-fill-color: white;
    border-color: transparent;
}

.read-more:hover::before {
    width: 100%;
}

.read-more i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(8px);
}

.view-all-container {
    text-align: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #1a2b4c;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    padding: 18px 45px;
    border: 3px solid transparent;
    border-image: linear-gradient(135deg, #23adeb, #ff6b00);
    border-image-slice: 1;
    border-radius: 60px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #23adeb, #ff6b00);
    transition: left 0.4s ease;
    z-index: -1;
}

.view-all-btn:hover {
    color: white;
    border-color: transparent;
}

.view-all-btn:hover::before {
    left: 0;
}

.view-all-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(10px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .hero-section {
        min-height: 600px;
        padding: 100px 0 80px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .service-icons {
        gap: 20px;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .service-icon-wrapper i {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .top-bar-right {
        justify-content: center;
    }
    
    .navigation ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-section {
        min-height: 500px;
        padding: 80px 0 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .service-item span {
        font-size: 14px;
    }
    
    .top-bar-right {
        gap: 15px;
    }
    
    .dsp-login, .register-btn {
        padding: 4px 10px;
        font-size: 12px;
    }
}

/* Transforming Lives Section */
.transforming-lives {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8faff 0%, #f0f5ff 100%);
    position: relative;
    overflow: hidden;
}

.transforming-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Content Styles */
.transforming-content {
    position: relative;
    z-index: 2;
}

.section-badge {
    margin-bottom: 25px;
}

.badge-gradient {
    background: linear-gradient(135deg, #23adeb20 0%, #ff6b0020 100%);
    color: #23adeb;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 8px 25px;
    border-radius: 50px;
    display: inline-block;
    border-left: 3px solid #ff6b00;
}

.transforming-title {
    font-size: 40px !important;
    font-weight: 800;
    color: #1a2b4c;
    line-height: 1.2;
    margin-bottom: 25px;
}

.highlight-text {
    background: linear-gradient(135deg, #23adeb, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #23adeb30, #ff6b0030);
    border-radius: 4px;
    z-index: -1;
}

.transforming-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    max-width: 90%;
}

/* Contact Info Styles */
.contact-info {
    display: flex;
    gap: 40px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #23adeb, #ff6b00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,123,255,0.2);
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 20px;
    font-weight: 700;
    color: #1a2b4c;
}

/* Stats Highlight */
.stats-highlight {
    margin-bottom: 35px;
}

.stats-text {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 5px solid #ff6b00;
}

.stats-number {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #23adeb, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Join Us Button */
.join-us-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #23adeb, #ff6b00);
    color: white;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0,123,255,0.3);
    border: 2px solid transparent;
}

.join-us-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,123,255,0.4);
    background: transparent;
    color: #23adeb;
    border-color: #23adeb;
}

.join-us-btn:hover i {
    transform: translateX(8px);
}

.join-us-btn i {
    transition: transform 0.3s ease;
}

/* Right Side - Stats Cards */
.transforming-stats {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,123,255,0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #23adeb, #ff6b00);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,123,255,0.15);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #23adeb10 0%, #ff6b0010 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px dashed #23adeb;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    border-color: #ff6b00;
    transform: rotate(360deg);
}

.stat-icon i {
    font-size: 32px;
    background: linear-gradient(135deg, #23adeb, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #1a2b4c;
    margin-bottom: 8px;
    line-height: 1.2;
    background: linear-gradient(135deg, #23adeb, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Decorative Shapes */
.transforming-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,123,255,0.05), rgba(255,107,0,0.05));
    z-index: 1;
}

.transforming-shape.shape-1 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    right: -100px;
}

.transforming-shape.shape-2 {
    width: 250px;
    height: 250px;
    top: -100px;
    left: -50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .transforming-grid {
        gap: 40px;
    }
    
    .transforming-title {
        font-size: 42px;
    }
    
    .stat-number {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .transforming-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .transforming-content {
        text-align: center;
    }
    
    .transforming-description {
        max-width: 100%;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .stats-grid {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .transforming-title {
        font-size: 36px;
    }
    
    .badge-gradient {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .transforming-lives {
        padding: 70px 0;
    }
    
    .transforming-title {
        font-size: 30px;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .contact-item {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 25px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .join-us-btn {
        width: 100%;
        justify-content: center;
    }
}



/* Statistics Cards with Blue Background and Icons */
.stats-cards-section {
    padding: 60px 0;
    background: #1a2b4c;  /* Dark blue background */
    font-family: 'Segoe UI', Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid-1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card-1 {
    background: white;
    padding: 35px 20px 30px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card-1:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(255, 107, 0, 0.3);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #b9d5f3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.stat-card-1:hover .stat-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #eea570);
}

.stat-icon i {
    font-size: 32px;
    color: white;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #1a2b4c;
    margin-bottom: 8px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.stat-card-1:hover .stat-number {
    background: linear-gradient(135deg, #23adeb, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 18px;
    color: #555;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.stat-card-1:hover .stat-label {
    color: #ff6b00;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid-1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .stats-cards-section {
        padding: 50px 0;
    }
    
    .stat-card-1 {
        padding: 30px 15px 25px;
    }
    
    .stat-number {
        font-size: 38px;
    }
    
    .stat-label {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .stats-grid-1 {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 16px;
    }
}

/* ********** partner sction starts ********** */
/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: #23adeb;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: inline-block;
    background: linear-gradient(135deg, rgba(0,123,255,0.1) 0%, rgba(255,107,0,0.1) 100%);
    padding: 8px 25px;
    border-radius: 50px;
}

.section-title {
    color: #1a2b4c;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-underline {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #23adeb, #ff6b00, #23adeb);
    margin: 0 auto 25px;
    border-radius: 5px;
    background-size: 200% auto;
    animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.section-description {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Partners Slider */
.partners-slider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    margin: 40px 0;
}

.slider-container {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    animation: scrollPartners 30s linear infinite;
    gap: 40px;
}

.slider-track:hover {
    animation-play-state: paused;
}

.partner-item {
    flex: 0 0 auto;
    width: 180px;
    height: 100px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
    border-color: #ff6b00;
}

.partner-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Scrolling Animation */
@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-220px * 8 - 40px * 8));
    }
}

/* Partner CTA */
.partner-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0,123,255,0.05) 0%, rgba(255,107,0,0.05) 100%);
    border-radius: 60px;
}

.partner-cta p {
    font-size: 20px;
    color: #1a2b4c;
    font-weight: 500;
}

.partner-link {
    color: #ff6b00;
    text-decoration: none;
    font-weight: 700;
    margin-left: 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.partner-link:hover {
    color: #23adeb;
    transform: translateX(5px);
}

.partner-link i {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 42px;
    }
    
    .section-description {
        font-size: 17px;
        padding: 0 20px;
    }
    
    .partner-item {
        width: 160px;
        height: 90px;
    }
    
    @keyframes scrollPartners {
        100% {
            transform: translateX(calc(-200px * 8 - 40px * 8));
        }
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .partner-item {
        width: 140px;
        height: 80px;
        padding: 15px;
    }
    
    .partner-item img {
        max-height: 50px;
    }
    
    .partner-cta p {
        font-size: 18px;
    }
    
    @keyframes scrollPartners {
        100% {
            transform: translateX(calc(-180px * 8 - 30px * 8));
        }
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 30px;
    }
    
    .section-description {
        font-size: 15px;
    }
    
    .partner-item {
        width: 120px;
        height: 70px;
    }
    
    .partner-item img {
        max-height: 40px;
    }
    
    .partner-cta {
        padding: 20px;
    }
    
    .partner-cta p {
        font-size: 16px;
    }
    
    @keyframes scrollPartners {
        100% {
            transform: translateX(calc(-160px * 8 - 20px * 8));
        }
    }
}

/* Optional: Add navigation buttons if needed */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.slider-control {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #23adeb;
    color: #23adeb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-control:hover {
    background: linear-gradient(135deg, #23adeb, #ff6b00);
    color: white;
    border-color: transparent;
    transform: scale(1.1);
}
/* ************************ partner sction ends ************************** */

/* ********************testimonial section starts **************************** */

.testimonials-slider-container {
    position: relative;
    width: 100%;
    margin: 40px 0;
    overflow: hidden;
}

.testimonials-wrapper {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #23adeb;
    color: #23adeb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.slider-arrow:hover {
    background: linear-gradient(135deg, #23adeb, #ff6b00);
    color: white;
    border-color: transparent;
    transform: scale(1.1);
}

.slider-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive for slider */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .slider-controls {
        margin-top: 20px;
    }
}

/* Card Style 2 (your existing style) */
.card-style-2 {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-style-2:hover {
    border-color: #23adeb;
    transform: scale(1.02);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.quote-mark {
    font-size: 80px;
    line-height: 0.8;
    color: #e0e9ff;
    font-family: serif;
    font-weight: 700;
}

.author-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-icon i {
    font-size: 45px;
    color: #ff6b00;
}

.profile-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a2b4c;
    margin-bottom: 5px;
}

.profile-rating i {
    color: #ffc107;
    font-size: 14px;
}

.testimonial-message {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 20px 0;
    font-style: italic;
    padding-left: 20px;
    border-left: 4px solid #23adeb;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-size: 14px;
    color: #777;
    border-top: 2px solid #f0f5ff;
    padding-top: 15px;
}

.card-footer i {
    margin-right: 5px;
    color: #ff6b00;
}

/* Navigation Dots */
.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0 30px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d9e8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    width: 30px;
    border-radius: 20px;
    background: linear-gradient(90deg, #23adeb, #ff6b00);
}

.nav-dot:hover {
    background: #23adeb;
}
.slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}
/* Dragging styles */
.testimonials-track.dragging {
    transition: none !important;
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

.testimonials-track {
    cursor: grab;
    cursor: -webkit-grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.testimonial-card {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Prevent text selection while dragging */
.testimonials-section {
    -webkit-tap-highlight-color: transparent;
}

/* ********************testimonial section ends **************************** */

/* *****************why choose k server technology starts******************** */
/* Why Choose Us Section - Two Column Layout */
.why-choose-section {
    padding: 0px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #23adeb;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: inline-block;
    background: linear-gradient(135deg, rgba(0,123,255,0.1) 0%, rgba(255,107,0,0.1) 100%);
    padding: 8px 25px;
    border-radius: 50px;
}

.section-title {
    color: #1a2b4c;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-text {
    background: linear-gradient(135deg, #23adeb, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #23adeb, #ff6b00, #23adeb);
    margin: 0 auto;
    border-radius: 5px;
    background-size: 200% auto;
    animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Two Column Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Content Styles */
.why-choose-content {
    padding-right: 30px;
}

.why-choose-item {
    margin-bottom: 10px;
}

.why-choose-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a2b4c;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #23adeb, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.why-choose-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    text-align: justify;
}

.why-choose-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #23adeb, #ff6b00);
    margin: 10px 0 10px;
    border-radius: 3px;
}

/* CTA Styles */
.why-choose-cta {
    background: linear-gradient(135deg, #1a2b4c 0%, #0f1a2f 100%);
    padding: 10px 15px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.why-choose-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255,107,0,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-heading {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin: 0;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* Right Image Styles */
.why-choose-image {
    position: relative;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.why-choose-image:hover .feature-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,123,255,0.2) 0%, rgba(255,107,0,0.2) 100%);
    mix-blend-mode: overlay;
}

/* Decorative Shapes for Image */
.image-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,107,0,0.2), rgba(0,123,255,0.2));
    z-index: 2;
    pointer-events: none;
}

.shape-1 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: -50px;
    left: -50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-choose-grid {
        gap: 40px;
    }
    
    .why-choose-image {
        height: 500px;
    }
    
    .why-choose-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 70px 0;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-choose-content {
        padding-right: 0;
    }
    
    .why-choose-image {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-heading {
        font-size: 24px;
    }
    
    .cta-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .why-choose-title {
        font-size: 20px;
    }
    
    .why-choose-description {
        font-size: 15px;
    }
    
    .why-choose-image {
        height: 300px;
    }
    
    .why-choose-cta {
        padding: 25px 20px;
    }
    
    .cta-heading {
        font-size: 22px;
    }
}
/* *****************why choose k server technology ends******************** */
/* ************************footer section starts************************** */
/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #1a2b4c 0%, #0f1a2f 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 60px 0 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #23adeb, #ff6b00, #23adeb);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Footer */
.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1.2fr;
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Columns */
.footer-col {
    margin-bottom: 20px;
}

/* Company Info Column */
.footer-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #ff6b00;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #23adeb, #ff6b00);
    border-radius: 2px;
    margin-top: 15px;
}

/* Footer Headings */
.footer-heading {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #23adeb, #ff6b00);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #ff6b00;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ff6b00;
    font-size: 18px;
    font-weight: bold;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -5px;
}

/* Address Column */
.footer-address-col {
    grid-column: span 1;
}

.footer-address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 15px;
    margin-top: 5px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #ff6b00;
}

/* Copyright Bar */
.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-address-col {
        grid-column: span 2;
    }
    
    .footer-title {
        font-size: 26px;
    }
    
    .footer-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 50px 0 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-address-col {
        grid-column: span 1;
    }
    
    .footer-title {
        font-size: 24px;
    }
    
    .footer-heading {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .footer-address {
        font-size: 14px;
        padding: 15px;
    }
    
    .copyright-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer-title {
        font-size: 22px;
    }
    
    .footer-subtitle {
        font-size: 15px;
    }
    
    .footer-heading {
        font-size: 17px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-address {
        padding: 12px;
        font-size: 13px;
    }
    
    .copyright-text {
        font-size: 13px;
        padding: 0 10px;
    }
}

/* Optional: Add a decorative pattern */
.footer-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, transparent 70%);
    pointer-events: none;
}
/* ************************footer section ands************************** */
/* Footer Map */
.footer-map {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    background: linear-gradient(135deg, #23adeb, #ff6b00) border-box;
    transition: all 0.3s ease;
}

.footer-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.3);
}

.footer-map iframe {
    display: block;
    transition: all 0.3s ease;
}

.footer-map:hover iframe {
    filter: brightness(1.05);
}