/* Global Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #0f172a;
}

a {
    text-decoration: none;
}



/* Navigation */
header {
    position: sticky !important;
    top: 0 !important;
    left: 0;
    right: 0;
    z-index: 1000 !important;
    margin: 0;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

.main-nav {
    background: #ffffff !important;
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure header is always visible */
header,
header.scrolled {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
}

/* Sticky header styles when scrolled */
header.scrolled .main-nav {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@media (max-width: 1199.98px) {
    header.scrolled .main-nav {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
        background: rgba(255, 255, 255, 0.98);
    }
}


.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    max-height: 48px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover .brand-logo {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4993cf, #0ea5e9);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Don't show underline for dropdown toggles */
.navbar-nav .dropdown-toggle::after {
    content: "\f107" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    position: absolute !important;
    right: 0.5rem !important;
    top: 55% !important;
    transform: translateY(-50%) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin-left: 0 !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
    font-size: 0.7rem !important;
    color: #64748b !important;
    background: none !important;
    bottom: auto !important;
    left: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.navbar-nav .nav-link:hover {
    color: #4993cf;
    background: rgba(73, 147, 207, 0.05);
}

.navbar-nav .nav-link:hover::after {
    width: 60%;
    transform: translateX(-50%) scaleX(1);
}

/* Don't show underline on hover for dropdown toggles */
.navbar-nav .dropdown-toggle:hover::after {
    width: auto !important;
    height: auto !important;
    background: none !important;
    transform: translateY(-50%) rotate(180deg) !important;
}

.navbar-nav .nav-link.active {
    color: #4993cf;
    font-weight: 600;
    background: rgba(73, 147, 207, 0.08);
}

.navbar-nav .nav-link.active::after {
    width: 60%;
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown Toggle Styles */
.navbar-nav .dropdown-toggle {
    position: relative;
    padding-right: 1.75rem !important;
}

/* Override the underline effect for dropdown toggles - use arrow instead */
.navbar-nav .dropdown-toggle::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0;
    border: none;
    width: auto;
    height: auto;
    font-size: 0.7rem;
    color: #64748b;
    background: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-top: 0;
}

/* Arrow points upward when dropdown is open/hovered */
.navbar-nav .dropdown-toggle:hover::after,
.navbar-nav .dropdown:hover>.dropdown-toggle::after,
.navbar-nav .dropdown.show>.dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg) !important;
    color: #4993cf;
}

.navbar-nav .dropdown:hover>.dropdown-toggle,
.navbar-nav .dropdown.show>.dropdown-toggle {
    color: #4993cf;
    background: rgba(73, 147, 207, 0.08);
}

/* Remove underline animation for dropdown toggles */
.navbar-nav .dropdown-toggle:hover::after,
.navbar-nav .dropdown-toggle.active::after {
    width: auto;
    height: auto;
    background: none;
    bottom: auto;
    left: auto;
}

/* Dropdown Menu Styles */
.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    background: #ffffff;
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.navbar-nav .dropdown:hover>.dropdown-menu,
.navbar-nav .dropdown.show>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.navbar-nav .dropdown-item {
    color: #1e293b;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-left: 3px solid transparent;
    margin: 0.05rem 0.15rem;
    border-radius: 8px;
    letter-spacing: 0.01em;
}

.navbar-nav .dropdown-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg, #4993cf, #0ea5e9);
    border-radius: 0 3px 3px 0;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .dropdown-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(73, 147, 207, 0.1), rgba(14, 165, 233, 0.05));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.navbar-nav .dropdown-item:hover {
    background: linear-gradient(90deg, rgba(73, 147, 207, 0.1), rgba(14, 165, 233, 0.06));
    color: #4993cf;
    border-left-color: #4993cf;
    box-shadow: 0 2px 8px rgba(73, 147, 207, 0.08);
    font-weight: 600;
    transform: translateX(4px);
}

.navbar-nav .dropdown-item:hover::before {
    transform: translateY(-50%) scaleX(1);
}

.navbar-nav .dropdown-item:hover::after {
    opacity: 1;
}

.navbar-nav .dropdown-item.active,
.navbar-nav .dropdown-item:active {
    background: linear-gradient(90deg, rgba(73, 147, 207, 0.12), rgba(14, 165, 233, 0.08));
    color: #4993cf;
    border-left-color: #4993cf;
    font-weight: 600;
}

.navbar-nav .dropdown-item.active::before,
.navbar-nav .dropdown-item:active::before {
    transform: translateY(-50%) scaleX(1);
}

.navbar-nav .dropdown-item.active::after,
.navbar-nav .dropdown-item:active::after {
    opacity: 1;
}

.navbar-toggler {
    border-color: rgba(15, 23, 42, 0.3);
}

.navbar-toggler-icon {
    filter: invert(0.1);
}

.header-actions {
    margin-left: auto;
}

.header-search-btn {
    display: none;
}

.header-icon-btn {
    border-radius: 50%;
    border: none;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #0f172a;
}

.header-icon-btn:hover {
    background: rgba(15, 23, 42, 0.05);
}

.header-cta-btn {
    border-radius: 10px;
    padding: 0.65rem 1.75rem;
    background: linear-gradient(135deg, #1c1c1c 0%, #1c1c1c 100%);
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(73, 147, 207, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.header-cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.header-cta-btn:hover {
    background: linear-gradient(135deg, #0ea5e9 0%, #4993cf 100%);
    box-shadow: 0 6px 24px rgba(73, 147, 207, 0.4);
    transform: translateY(-2px);
}

.header-cta-btn:hover::before {
    left: 100%;
}

/* Mobile menu button styling */
.mobile-menu-btn {
    margin-left: auto;
    border-radius: 10px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(73, 147, 207, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    border: 1px solid rgba(73, 147, 207, 0.2);
    color: #4993cf;
    box-shadow: 0 4px 12px rgba(73, 147, 207, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-btn:hover {
    background: linear-gradient(135deg, #4993cf 0%, #0ea5e9 100%);
    box-shadow: 0 6px 20px rgba(73, 147, 207, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
    border-color: #4993cf;
}

.mobile-menu-btn i {
    font-size: 1rem;
}

/* Custom dots grid icon */
.dots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 3px;
    width: 18px;
    height: 18px;
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    display: block;
}

.dot-gray {
    background-color: #475569;
}

.dot-blue {
    background-color: #4993cf;
}

/* Mobile navbar dropdown (collapse) */
@media (max-width: 1199.98px) {
    .main-nav {
        background: white;
    }

    .navbar-brand .brand-logo {
        max-height: 44px;
    }

    /* Hide default navbar toggler, use dots button instead */
    .navbar-toggler {
        display: none !important;
    }

    /* Hide collapse menu, use offcanvas instead */
    .navbar-collapse {
        display: none !important;
    }

    /* Ensure navbar uses flexbox for proper alignment */
    .main-nav .container-fluid {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

/* Extra small mobile tweaks */
@media (max-width: 575.98px) {
    .main-nav {
        box-shadow: none;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .navbar-brand .brand-logo {
        max-height: 40px;
    }

    /* Mobile scrolled state - ensure sticky header works on mobile */
    header.scrolled .main-nav {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px) saturate(180%);
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }
}

/* Mobile Offcanvas Menu */
.mobile-offcanvas {
    max-width: 320px;
    width: 85%;
}

.mobile-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    padding: 1.25rem 1.25rem 1rem;
}

.mobile-menu-close {
    background: transparent !important;
    border: none;
    color: #4993cf;
    font-size: 1.1rem;
    padding: 0.25rem;
    width: auto;
    height: auto;
    opacity: 1;
    background-image: none !important;
}

.mobile-menu-close::before {
    display: none;
}

.mobile-menu-close:hover {
    color: #004b78;
    opacity: 1;
}

.mobile-offcanvas .offcanvas-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}

.mobile-nav-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    color: #0f172a;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    transition: color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    color: #4993cf;
}

.mobile-nav-link.has-dropdown i {
    color: #4993cf;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-nav-link.has-dropdown i {
    transform: rotate(45deg);
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 1000px;
}

.mobile-submenu li {
    padding: 0;
}

.mobile-submenu a {
    display: block;
    padding: 0.65rem 0 0.65rem 1.5rem;
    color: #475569;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.mobile-submenu a:hover {
    color: #4993cf;
    background-color: rgba(73, 147, 207, 0.05);
}

.mobile-contact {
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    margin-top: auto;
    padding-top: 1.5rem;
}

.mobile-contact-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 0.9rem 0;
    color: #0f172a;
}

.mobile-contact-item:last-child {
    padding-bottom: 0;
}

.mobile-contact-item i {
    color: #4993cf;
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.mobile-contact-item h6 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0f172a;
}

.mobile-contact-item p,
.mobile-contact-item a {
    font-size: 0.9rem;
    color: #475569;
    margin: 0;
    text-decoration: none;
}

.mobile-contact-item a:hover {
    color: #4993cf;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #f9fafb;
    background-image: url('images/bann.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-background-image {
    display: none;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    min-height: 400px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.welcome-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.welcome-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.welcome-label {
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 600;
}

.hero-title {
    font-weight: 900;
    line-height: 1.15;
    font-size: clamp(2.8rem, 5vw + 1.5rem, 4.5rem);
    color: #ffffff;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.hero-title:hover {
    transform: translateY(-3px);
    text-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.hero-title .highlight {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
    text-decoration-color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.hero-title:hover .highlight {
    text-decoration-color: rgba(255, 255, 255, 1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 36rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.hero-subtitle:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.hero-btn-primary {
    background-color: #ffffff;
    border: none;
    color: #4993cf;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 82, 204, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-btn-primary:hover {
    background-color: #f0f7ff;
    color: #003e99;
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.hero-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.hero-btn-primary i {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover i {
    transform: translateX(5px);
}


/* Hero Visual Side */
.hero-visual {
    position: relative;
    max-width: 600px;
    margin-inline: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-curved-shape {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 600px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.3), rgba(0, 82, 204, 0.4));
    border-radius: 50% 20% 50% 20%;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.hero-dots-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.4;
    z-index: 1;
}

.hero-photo {
    position: absolute;
    inset: 20px;
    border-radius: 50% 20% 50% 20%;
    overflow: hidden;
    z-index: 2;
    filter: blur(2px);
}

.hero-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

/* Responsive Tweaks */
@media (max-width: 991.98px) {
    .hero-banner {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-banner .row {
        text-align: center;
    }

    .hero-banner .d-flex {
        justify-content: center;
    }

    .hero-curved-shape {
        height: 450px;
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {

    .hero-banner {
        min-height: auto;
        padding: 2.5rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-curved-shape {
        height: 350px;
    }

    .hero-photo {
        inset: 15px;
    }
}

@media screen and (min-width:1024px) {
    .hero-title {
        font-size: 2.8rem !important;
    }

    .feature-card:nth-child(even) {
        margin-top: -3rem;
    }
}

/* Ensure footer padding matches header at 992px and above (lg breakpoint) */
@media (min-width: 992px) {
    /* Footer containers should match header padding (px-lg-5 = 3rem) */
    .footer .container,
    .footer .container-fluid,
    #footer .container,
    #footer .container-fluid,
    .footer-top .container,
    .footer-top .container-fluid,
    .footer-bottom .container,
    .footer-bottom .container-fluid {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }
    
    /* Ensure footer rows don't break container padding alignment */
    .footer .container .row,
    .footer .container-fluid .row,
    #footer .container .row,
    #footer .container-fluid .row,
    .footer-top .container .row,
    .footer-top .container-fluid .row,
    .footer-bottom .container .row,
    .footer-bottom .container-fluid .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media screen and (min-width:1366px) {
    .hero-title {
        font-size: 3.5rem !important;
    }
    .how-we-do-area {
        width: 88%;
        margin: 0 auto;
    }
    
  .web-design-hero-title {
    font-size: 3.5rem !important;
  }

}

/* ========== About Us Section Styles Start ========== */
.about-us-section {
    padding: 100px 0;
    background: #ffffff;
}

/* Ensure equal spacing for all sections */
.about-us-section .container,
.hero-banner .container {
    padding-left: 3rem;
    padding-right: 3rem;
}

.about-us-left {
    padding-right: 2rem;
}

.about-us-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.label-line {
    width: 50px;
    height: 3px;
    background: #f97316;
    border-radius: 2px;
}

.label-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #64748b;
}

.about-us-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color:#1c1c1c;
    margin-bottom: 1.5rem;
}

.about-us-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 2.5rem;
}

.about-us-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number.stat-orange {
    color: #f97316;
}

.stat-number.stat-blue {
    color: #1c1c1c
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1c1c1c;
}

.about-us-right {
    padding-left: 2rem;
    display: flex;
    align-items: flex-start;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: start;
    width: 100%;
}

.service-section-spacing {
    padding: 100px 0;
}

.op-roadmap {
    background: #ffffff;
    padding: 100px 0 160px 0;
    position: relative;
    overflow: hidden;
}

.op-roadmap.pt-reduced {
    padding-top: 20px;
}




@media (max-width: 991.98px) {
    .service-section-spacing {
        padding: 70px 0;
    }
    .op-roadmap {
        padding: 70px 0 110px 0;
    }
    .op-roadmap.pt-reduced {
        padding-top: 20px;
    }
}






.roadmap-container {
    position: relative;
}

/* Connecting Line */
.roadmap-line {
    position: absolute;
    top: 50%;
    left: 15%;
    width: 70%;
    height: 1px;
    background: #e2e8f0;
    z-index: 0;
    display: none;
}



@media (min-width: 992px) {
    .roadmap-line { display: block; }
}

.roadmap-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    height: 100%;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}


.roadmap-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.12);
    border-color: rgba(79, 172, 254, 0.3);
}

.roadmap-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}


.roadmap-card:hover .roadmap-icon-wrapper {
    background: #4facfe;
}

.roadmap-icon-wrapper i {
    font-size: 2rem;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.roadmap-card:hover .roadmap-icon-wrapper i {
    -webkit-text-fill-color: white;
    background: none;
    color: white;
}

.op-metrics-modern {
    background: #0f172a;
    position: relative;
    padding: 100px 0;
    border-radius: 60px 60px 0 0;
    margin-top: -60px;
    z-index: 10;
}

@media (max-width: 991.98px) {
    .op-metrics-modern {
        padding: 70px 0;
        border-radius: 40px 40px 0 0;
        margin-top: -40px;
    }
}




.metrics-dashboard-wrapper {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.dashboard-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.metric-highlight-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.metric-highlight-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(10px);
    border-color: rgba(79, 172, 254, 0.4);
}

.metric-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.glow-blue {
    box-shadow: 0 0 20px rgba(79, 172, 254, 0.3);
    background: rgba(79, 172, 254, 0.1);
    color: #4facfe;
}

.glow-teal {
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
    background: rgba(0, 242, 254, 0.1);
    color: #00f2fe;
}

.roadmap-number {
    position: absolute;
    top: -15px;
    right: 25px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(79, 172, 254, 0.06);
    line-height: 1;
    z-index: -1;
    transition: all 0.3s ease;
}

.roadmap-card:hover .roadmap-number {
    color: rgba(79, 172, 254, 0.15);
    transform: scale(1.1);
}

.roadmap-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(79, 172, 254, 0.08);
    color: #4facfe;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.feature-card {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
    background: transparent;
    border: 2px solid;
}

.feature-icon i {
    font-size: 1.875rem;
}

.feature-icon.icon-orange {
    border-color: #f97316;
    color: #f97316;
}

.feature-icon.icon-yellow {
    border-color: #fbbf24;
    color: #fbbf24;
}

.feature-icon.icon-light-blue {
    border-color: #60a5fa;
    color: #60a5fa;
}

.feature-icon.icon-dark-blue {
    border-color: #4993cf;
    color: #4993cf;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .about-us-section {
        padding: 60px 0;
    }

    .about-us-left {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .about-us-label {
        justify-content: center;
    }

    .about-us-stats {
        justify-content: center;
        gap: 2rem;
    }

    .about-us-right {
        padding-left: 0;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

/* Responsive Container Padding - Equal spacing on all screens - UNIVERSAL RULES FOR ALL PAGES */
@media (max-width: 991.98px) {
    /* Tablet and below - equal spacing for ALL containers on ALL pages */
    /* Universal rule: All containers get the same padding as header */
    .container,
    .container-fluid,
    .container.px-lg-5,
    .container-fluid.px-lg-5,
    /* Header containers */
    header .container-fluid,
    header .container-fluid.px-lg-5,
    .main-nav .container-fluid,
    .main-nav .container-fluid.px-lg-5,
    .navbar .container-fluid,
    .navbar .container-fluid.px-lg-5,
    /* All section containers - universal selector */
    section .container,
    section .container-fluid,
    section .container.px-lg-5,
    section .container-fluid.px-lg-5 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    /* Fix Bootstrap row negative margins on tablet - UNIVERSAL for ALL pages */
    /* Remove negative margins from ALL rows to preserve container padding */
    .container .row,
    .container-fluid .row,
    .container.px-lg-5 .row,
    .container-fluid.px-lg-5 .row,
    section .container .row,
    section .container-fluid .row,
    section .container.px-lg-5 .row,
    section .container-fluid.px-lg-5 .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Ensure columns have proper spacing when row margins are removed - UNIVERSAL */
    .container .row > [class*="col-"],
    .container-fluid .row > [class*="col-"],
    .container.px-lg-5 .row > [class*="col-"],
    .container-fluid.px-lg-5 .row > [class*="col-"],
    section .container .row > [class*="col-"],
    section .container-fluid .row > [class*="col-"],
    section .container.px-lg-5 .row > [class*="col-"],
    section .container-fluid.px-lg-5 .row > [class*="col-"] {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

@media (max-width: 767.98px) {
    .about-us-section {
        padding: 50px 0;
    }

    /* Mobile - equal spacing for ALL containers on ALL pages - UNIVERSAL RULES */
    /* Universal rule: All containers get the same padding as header */
    .container,
    .container-fluid,
    .container.px-lg-5,
    .container-fluid.px-lg-5,
    /* Header containers */
    header .container-fluid,
    header .container-fluid.px-lg-5,
    .main-nav .container-fluid,
    .main-nav .container-fluid.px-lg-5,
    .navbar .container-fluid,
    .navbar .container-fluid.px-lg-5,
    /* All section containers - universal selector for ALL pages */
    section .container,
    section .container-fluid,
    section .container.px-lg-5,
    section .container-fluid.px-lg-5 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    /* Fix Bootstrap row negative margins on mobile - UNIVERSAL for ALL pages */
    /* Remove negative margins from ALL rows to preserve container padding */
    .container .row,
    .container-fluid .row,
    .container.px-lg-5 .row,
    .container-fluid.px-lg-5 .row,
    section .container .row,
    section .container-fluid .row,
    section .container.px-lg-5 .row,
    section .container-fluid.px-lg-5 .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Ensure columns don't have excessive padding when row margins are removed - UNIVERSAL */
    .container .row > [class*="col-"],
    .container-fluid .row > [class*="col-"],
    .container.px-lg-5 .row > [class*="col-"],
    .container-fluid.px-lg-5 .row > [class*="col-"],
    section .container .row > [class*="col-"],
    section .container-fluid .row > [class*="col-"],
    section .container.px-lg-5 .row > [class*="col-"],
    section .container-fluid.px-lg-5 .row > [class*="col-"] {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    /* Remove inner element padding on mobile to ensure equal spacing - UNIVERSAL */
    /* Prevent specific inner elements from adding padding that breaks alignment */
    .about-company-image,
    .about-company-content,
    .about-company-header,
    .mission-image-side,
    .mission-content-side,
    .mission-content-wrapper,
    .offering-header,
    .offering-description,
    .team-section-header,
    .team-carousel-wrapper,
    /* Web Designing page inner elements */
    .wd-about-content-wrapper,
    .wd-about-image-wrapper,
    .wd-services-header,
    .wd-services-description {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media (max-width: 575.98px) {
    /* Small mobile - equal spacing for ALL containers on ALL pages - UNIVERSAL RULES */
    /* Universal rule: All containers get the same padding as header */
    .container,
    .container-fluid,
    .container.px-lg-5,
    .container-fluid.px-lg-5,
    /* Header containers */
    header .container-fluid,
    header .container-fluid.px-lg-5,
    .main-nav .container-fluid,
    .main-nav .container-fluid.px-lg-5,
    .navbar .container-fluid,
    .navbar .container-fluid.px-lg-5,
    /* All section containers - universal selector for ALL pages */
    section .container,
    section .container-fluid,
    section .container.px-lg-5,
    section .container-fluid.px-lg-5 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Fix Bootstrap row negative margins on small mobile - UNIVERSAL for ALL pages */
    /* Remove negative margins from ALL rows to preserve container padding */
    .container .row,
    .container-fluid .row,
    .container.px-lg-5 .row,
    .container-fluid.px-lg-5 .row,
    section .container .row,
    section .container-fluid .row,
    section .container.px-lg-5 .row,
    section .container-fluid.px-lg-5 .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Ensure columns don't have excessive padding when row margins are removed - UNIVERSAL */
    .container .row > [class*="col-"],
    .container-fluid .row > [class*="col-"],
    .container.px-lg-5 .row > [class*="col-"],
    .container-fluid.px-lg-5 .row > [class*="col-"],
    section .container .row > [class*="col-"],
    section .container-fluid .row > [class*="col-"],
    section .container.px-lg-5 .row > [class*="col-"],
    section .container-fluid.px-lg-5 .row > [class*="col-"] {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    /* Remove inner element padding on small mobile to ensure equal spacing - UNIVERSAL */
    /* Prevent specific inner elements from adding padding that breaks alignment */
    .about-company-image,
    .about-company-content,
    .about-company-header,
    .mission-image-side,
    .mission-content-side,
    .mission-content-wrapper,
    .offering-header,
    .offering-description,
    .team-section-header,
    .team-carousel-wrapper,
    /* Web Designing page inner elements */
    .wd-about-content-wrapper,
    .wd-about-image-wrapper,
    .wd-services-header,
    .wd-services-description {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Large screens - proper container alignment */
@media (min-width: 992px) {
    .container {
        max-width: 1140px;
        margin: 0 auto;
    }
    
    .container.px-lg-5 {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .container.px-lg-5 {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .container.px-lg-5 {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (max-width: 767.98px) {
    .about-us-title {
        font-size: 1.75rem;
    }

    .about-us-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .about-us-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .about-us-left {
        padding-right: 2rem;
    }

    .about-us-right {
        padding-left: 1.5rem;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.75rem;
    }
}

/* ========== About Us Section Styles End ========== */

/* ========== What We Do Section Styles Start ========== */
.what-we-do-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.what-we-do-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(73, 147, 207, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.what-we-do-section>.container {
    position: relative;
    z-index: 1;
}

.what-we-do-section>.container:first-child {
    margin-bottom: 50px;
}

.what-we-do-section .section-heading {
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease-out;
}

.what-we-do-section .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #0f172a 0%, #4993cf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.what-we-do-section .section-subtitle {
    font-size: 1.35rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Service Card Styles */
.service-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: fadeInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4993cf, #0ea5e9);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    box-shadow: 0 20px 60px rgba(73, 147, 207, 0.2), 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #4993cf;
}

.service-thumb {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.service-thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 75, 120, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card:hover .service-thumb::after {
    opacity: 1;
}

.service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    display: block;
    filter: brightness(1) saturate(1);
}

.service-card:hover .service-thumb img {
    transform: scale(1.1);
    filter: brightness(1.05) saturate(1.1);
}

.service-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1c1c1c 0%, #1c1c1c 100%);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 2;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.service-card:hover .service-title-overlay {
    padding: 24px 28px;
    background: linear-gradient(135deg, #1c1c1c 0%, #1c1c1c 100%);
}

.service-title-overlay a {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    width: 100%;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.service-card:hover .service-icon::before {
    width: 100%;
    height: 100%;
}

.service-icon i {
    font-size: 1.6rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-title-overlay h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
    letter-spacing: 0.3px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-title-overlay h3 {
    transform: translateX(5px);
}

.service-info {
    padding: 25px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 0 0 16px 16px;
    position: relative;
}

.service-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.service-info p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 18px 0;
    flex: 1;
    transition: color 0.3s ease;
}

.service-card:hover .service-info p {
    color: #334155;
}

.service-button {
    margin-top: auto;
    padding-top: 5px;
}

.service-button a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-bottom: 0;
    margin-bottom: 0;
}

.service-button a::after {
    content: '→';
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.service-button a:hover {
    color: #4993cf;
    padding-left: 5px;
}

.service-button a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.button-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4993cf, #0ea5e9);
    margin-top: 10px;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    box-shadow: 0 2px 8px rgba(73, 147, 207, 0.3);
}

.service-button:hover .button-divider {
    width: 80px;
    background: linear-gradient(90deg, #0ea5e9, #4993cf);
    box-shadow: 0 4px 12px rgba(73, 147, 207, 0.4);
}

/* Show More Button */
.service-card-hidden {
    display: none;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin 0.5s ease;
    margin: 0;
}

.service-card-hidden.show {
    display: block;
    max-height: 2000px;
    opacity: 1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.show-more-btn {
    background: linear-gradient(135deg, #4993cf 0%, #0ea5e9 100%);
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(73, 147, 207, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.show-more-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.show-more-btn:hover::before {
    width: 300px;
    height: 300px;
}

.show-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(73, 147, 207, 0.4);
    background: linear-gradient(135deg, #0ea5e9 0%, #4993cf 100%);
}

.show-more-btn:active {
    transform: translateY(-1px);
}

.show-more-btn i {
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.show-more-btn.active i {
    transform: rotate(180deg);
}

.show-more-btn .btn-text {
    position: relative;
    z-index: 1;
}



/* Responsive Design for What We Do Section */
@media (max-width: 1199.98px) {
    .what-we-do-section .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .what-we-do-section {
        padding: 80px 0;
    }

 

    .what-we-do-section .section-title {
        font-size: 2rem;
    }

    .service-thumb {
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .what-we-do-section {
        padding: 60px 0;
    }

  

    .what-we-do-section .section-title {
        font-size: 1.75rem;
    }

    .what-we-do-section .section-subtitle {
        font-size: 0.85rem;
    }

    .service-thumb {
        height: 220px;
    }

    .service-title-overlay {
        padding: 15px 20px;
    }

    .service-title-overlay h3 {
        font-size: 1.1rem;
    }

    .service-icon {
        width: 45px;
        height: 45px;
    }

    .service-icon i {
        font-size: 1.3rem;
    }

    .service-info {
        padding: 25px 20px;
    }
}

@media (max-width: 575.98px) {
    .what-we-do-section {
        padding: 50px 0;
    }

    .what-we-do-section .section-title {
        font-size: 1.5rem;
    }

    .service-thumb {
        height: 200px;
    }

    .service-title-overlay {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px;
    }

    .service-title-overlay a {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .service-info {
        padding: 20px 15px;
    }
}

/* ========== What We Do Section Styles End ========== */

/* ========== Specialties Section Styles Start ========== */
.specialties-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.specialties-section .container {
    position: relative;
    z-index: 1;
}

/* Heading Colors */
.specialties-heading-black {
    color: #ffffff;
}

.specialties-heading-blue {
    color: #4993cf;
}

/* Left Column - Large Feature Card */
.specialty-feature-card {
    position: relative;
    background: linear-gradient(135deg, #0f2f47 0%, #123b56 50%, #0f2f47 100%);
    border-radius: 20px;
    padding: 60px 50px;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 47, 71, 0.3);
    transition: all 0.4s ease;
}

.specialty-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(15, 47, 71, 0.35);
}

.specialty-feature-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(73, 147, 207, 0.15) 0%, rgba(14, 165, 233, 0.1) 100%),
                url('images/choose.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
    filter: blur(1.5px);
    z-index: 0;
}

.specialty-feature-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    width: 100%;
}

.specialty-feature-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.specialty-feature-label .label-line {
    width: 50px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

.specialty-feature-label .label-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.specialty-feature-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.specialty-feature-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 500px;
}

.specialty-feature-btn {
    display: inline-block;
    background: #ffffff;
    color: #4993cf;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.specialty-feature-btn:hover {
    background: #f0f7ff;
    color: #0ea5e9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Specialties List */
.specialties-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 100%;
}

.specialty-item {
    background: #0f2f47;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px 35px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(15, 47, 71, 0.15);
    transition: all 0.3s ease;
    cursor: default;
}

.specialty-item:hover {
    background: #123b56;
    box-shadow: 0 6px 20px rgba(15, 47, 71, 0.2);
    transform: translateX(5px);
}

.specialty-text {
    flex: 1;
}

.specialty-checkmark {
    width: 32px;
    height: 32px;
    background: #0f2f47;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 15px;
}

.specialty-checkmark i {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: bold;
}

.specialty-item:hover .specialty-checkmark {
    background: #123b56;
}


/* Right Column - Steps Grid */
.specialties-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    height: 100%;
}

.step-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(73, 147, 207, 0.15);
    border-color: rgba(73, 147, 207, 0.3);
}

.step-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #4993cf;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -2px;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    color: #0ea5e9;
    transform: scale(1.05);
}

.step-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 14px 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.step-card:hover .step-title {
    color: #4993cf;
}

.step-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0 0 20px 0;
    flex: 1;
    transition: color 0.3s ease;
}

.step-card:hover .step-description {
    color: #475569;
}

.step-accent-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4993cf, #0ea5e9);
    border-radius: 2px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.step-card:hover .step-accent-line {
    height: 4px;
    box-shadow: 0 2px 8px rgba(73, 147, 207, 0.3);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .specialties-section {
        padding: 80px 0;
    }

    .specialty-feature-card {
        padding: 50px 40px;
        min-height: 550px;
        margin-bottom: 40px;
    }

    .specialty-feature-title {
        font-size: 2rem;
    }

    .specialties-list {
        gap: 16px;
    }

    .specialty-item {
        font-size: 1rem;
        padding: 18px 30px;
    }
}

@media (max-width: 767.98px) {
    .specialties-section {
        padding: 60px 0;
    }

    .specialty-feature-card {
        padding: 40px 30px;
        min-height: auto;
        margin-bottom: 35px;
    }

    .specialty-feature-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .specialty-feature-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .specialties-list {
        gap: 14px;
    }

    .specialty-item {
        font-size: 0.95rem;
        padding: 16px 25px;
    }

    .specialty-checkmark {
        width: 28px;
        height: 28px;
    }

    .specialty-checkmark i {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .specialties-section {
        padding: 50px 0;
    }

    .specialty-feature-card {
        padding: 35px 25px;
        border-radius: 16px;
        margin-bottom: 30px;
    }

    .specialty-feature-title {
        font-size: 1.5rem;
        margin-bottom: 18px;
    }

    .specialty-feature-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .specialties-list {
        gap: 12px;
    }

    .specialty-item {
        font-size: 0.9rem;
        padding: 14px 20px;
    }

    .specialty-checkmark {
        width: 26px;
        height: 26px;
        margin-left: 12px;
    }

    .specialty-checkmark i {
        font-size: 0.75rem;
    }
}
/* ========== Specialties Section Styles End ========== */

/* ========== Statistics Section Styles Start ========== */
.statistics-section {
    padding: 70px 0;
    background-color: #dce6f9;
    background-image: url('./images/pattern.png');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: auto;
}

.statistics-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(73, 147, 207, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.statistics-section .container {
    position: relative;
    z-index: 1;
}

.stat-item-wrapper {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.stat-item-wrapper:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 15px;
    display: block;
    letter-spacing: -1px;
    transition: all 0.3s ease;
}

.stat-number.stat-color-1 {
    color: #a855f7;
}

.stat-number.stat-color-2 {
    color: #3b82f6;
}

.stat-number.stat-color-3 {
    color: #f97316;
}

.stat-number.stat-color-4 {
    color: #06b6d4;
}

.stat-item-wrapper:hover .stat-number.stat-color-1 {
    color: #9333ea;
}

.stat-item-wrapper:hover .stat-number.stat-color-2 {
    color: #2563eb;
}

.stat-item-wrapper:hover .stat-number.stat-color-3 {
    color: #ea580c;
}

.stat-item-wrapper:hover .stat-number.stat-color-4 {
    color: #0891b2;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1c1c1c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Responsive Design for Statistics Section */
@media (max-width: 991.98px) {
    .statistics-section {
        padding: 80px 0;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .statistics-section {
        padding: 60px 0;
        background-size: 200px auto;
    }

    .statistics-section::before {
        width: 250px;
        height: 250px;
        background-size: 250px auto;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .stat-item-wrapper {
        padding: 30px 15px;
    }
}

@media (max-width: 575.98px) {
    .statistics-section {
        padding: 40px 0;
    }

    .stat-item-wrapper {
        padding: 30px 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

}

/* ========== Statistics Section Styles End ========== */

/* ========== Technology Index Section Styles Start ========== */
.technology-index-section {
    padding: 80px 0;
    background-image: url('images/technologybg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}


.technology-index-section .container {
    position: relative;
    z-index: 1;
}

.technology-index-section .section-heading {
    margin-bottom: 30px;
}

/* Technology Carousel */
.tech-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.tech-carousel-wrapper:active {
    cursor: grabbing;
}

.tech-carousel-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    width: fit-content;
    will-change: transform;
    position: relative;
    transition: transform 0.1s ease-out;
}

.tech-carousel-track:hover {
    animation-play-state: paused;
}

.tech-carousel-track.dragging {
    animation: none !important;
    animation-play-state: paused !important;
    transition: none !important;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.tech-logo-container {
    flex: 0 0 auto;
    width: 180px;
    text-align: center;
}

.technology-index-section .sub-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: white;
    display: block;
    margin-bottom: 15px;
}

.technology-index-section .title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 28px;
    margin: 0;
    margin: 36px 0px 0px 0px;
    color: #FFFFFF;
    text-align: center;
    padding-top: 30px;
}

.tech-logo-item {
    transition: all 0.3s ease;
    text-align: center;
    padding: 30px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #FFFFFF21;
    border-radius: 4px;
    margin: 30px 0px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.tech-logo-item:hover {
    border-color: #FFFFFF;
    background-color: #FFFFFF;
}

.tech-logo-item:hover .logo-img a img.hover-logo {
    display: block;
    opacity: 3;
    visibility: visible;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
    filter: grayscale(0%);
}

.tech-logo-item:hover .logo-img a img.main-logo {
    display: block;
    visibility: hidden;
    transform: translate(-50%, 100%);
}

.technology-index-section .logo-title {
    position: relative;
}

.technology-index-section .logo-title::before {
    content: '';
    position: absolute;
    top: -36px;
    left: 0;
    right: 0;
    margin: auto;
    height: 40px;
    width: 1px;
    background-color: #ffffff21;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
}

.technology-index-section .logo-title:before {
    background-color: #FFFFFF21;
}

.technology-index-section .logo-title::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    margin: auto;
    height: 12px;
    border-radius: 100%;
    width: 12px;
    background-color: #ffffff21;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
}

.technology-index-section .logo-title:after {
    background-color: #FFFFFF21;
}

.technology-index-section .tech-logo-container:hover .logo-title:before {
    background-color: #FFFFFF;
}

.technology-index-section .tech-logo-container:hover .logo-title:after {
    background-color: #FFFFFF;
}



.logo-img {
    overflow: hidden;
    display: flex;
}

/* .tech-logo-item:hover .logo-img {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
} */

.logo-img a {
    overflow: hidden;
    display: inline-block;
    position: relative;
}

.logo-img img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-img .main-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
}

.logo-img .hover-logo {
    display: block;
    z-index: 1;
    top: 0;
    left: 0;
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}

.tech-logo-item:hover .main-logo {
    opacity: 0;
}

.tech-logo-item:hover .hover-logo {
    opacity: 1;
}

.logo-title {
    margin-top: 15px;
}
.technology-index-section .heading-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.logo-title .title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.tech-logo-item:hover .logo-title .title {
    color: #ffffff;
}

/* Responsive Technology Index Section */
@media (max-width: 991.98px) {
    .technology-index-section {
        padding: 80px 0;
    }

    .technology-index-section .section-heading {
        margin-bottom: 50px;
    }
    
    .tech-logo-container {
        width: 160px;
    }
    
    .tech-carousel-track {
        gap: 25px;
    }
}

@media (max-width: 767.98px) {
    .technology-index-section {
        padding: 60px 0;
    }

    .technology-index-section .section-heading {
        margin-bottom: 40px;
    }

    .logo-title .title {
        font-size: 0.9rem;
    }
    
    .tech-logo-container {
        width: 140px;
    }
    
    .tech-carousel-track {
        gap: 20px;
        animation-duration: 25s;
    }
    
    .tech-logo-item {
        padding: 35px 25px 35px 25px;
    }
}

@media (max-width: 575.98px) {
    .technology-index-section {
        padding: 50px 0;
        background-image: url('images/technologybg.jpg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .tech-logo-container {
        width: 120px;
    }
    
    .tech-carousel-track {
        gap: 15px;
        animation-duration: 20s;
    }
    
    .tech-logo-item {
        padding: 30px 20px 30px 20px;
    }
    
    .technology-index-section .title {
        font-size: 14px;
        margin: 30px 0px 0px 0px;
        padding-top: 20px;
    }
}

/* ========== Testimonial Section Styles Start ========== */
.testimonial-section {
    padding: 100px 0;
    background: #f6f8fb;
}

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

.testimonial-content {
    padding-left: 20px;
}

.testimonial-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 12px;
}

.testimonial-heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.testimonial-subtitle {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 28px;
    max-width: 620px;
}

.testimonial-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 32px;
    box-shadow: 0 16px 50px rgba(15, 47, 71, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.quote-icon {
    color: #2563eb;
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 22px;
}

.testimonial-author {
    gap: 12px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info .author-name {
    font-weight: 700;
    color: #111827;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.author-info .author-role {
    font-size: 0.95rem;
    color: #6b7280;
}

/* Testimonial Carousel Styles */
#testimonialCarousel {
    margin-top: 20px;
}


#testimonialCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cbd5e1;
    border: none;
    margin-right: 8px;
    opacity: 1;
    transition: all 0.3s ease;
}

#testimonialCarousel .carousel-indicators button.active {
    background-color: #4993cf;
    width: 30px;
    border-radius: 6px;
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    display: none;
}

#testimonialCarousel .carousel-item {
    transition: transform 0.6s ease-in-out;
}

#testimonialCarousel .carousel-inner {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#testimonialCarousel .carousel-inner:active {
    cursor: grabbing;
}

@media (max-width: 991.98px) {
    .testimonial-content {
        padding-left: 0;
    }
    .testimonial-heading {
        font-size: 2.2rem;
    }
    
}

@media (max-width: 767.98px) {
    .testimonial-section {
        padding: 60px 0;
    }
    .testimonial-heading {
        font-size: 2rem;
    }
    .testimonial-subtitle {
        font-size: 1rem;
    }
    .testimonial-box {
        padding: 24px 26px;
    }
    
 
}
@media screen and (min-width:375px) {
    #testimonialCarousel .carousel-indicators {
    justify-content: flex-start;
    right: auto;
    margin: 0;
    bottom: -40px;
    }
}

@media (max-width: 575.98px) {
    .testimonial-section {
        padding: 80px 0;
    }
    .testimonial-heading {
        font-size: 1.8rem;
    }
    .testimonial-subtitle {
        font-size: 0.95rem;
    }
    .testimonial-box {
        padding: 20px;
    }
    .testimonial-text {
        font-size: 0.95rem;
    }
}
/* ========== Testimonial Section Styles End ========== */

/* ========== Technology Index Section Styles End ========== */

/* ========== How We Do Section Styles Start ========== */
.how-we-do-area {
    padding-bottom: 35px;
    padding-top: 95px;
}



.custom-container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 3rem;
}

.custom-row {
    display: flex;
    width: 100%;
}

.how-we-do-area .custom-row {
    background: #1c1c1c;
    border-radius: 10px;
    padding: 50px;
    position: relative;
    z-index: 1;
}

.how-we-do-area .custom-row .how-we-do-bg {
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.how-we-do-area .how-we-do-left-content {
    flex: none;
    width: 255px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.section-subtitle {
    font-family: var(--font_syne);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 5px;
    color: var(--primary_color);
    margin: 0;
    text-transform: uppercase;
}

.how-we-do-area .how-we-do-left-content .top .section-subtitle {
    color: #4993cf !important;
}

.how-we-do-area .how-we-do-left-content .top .section-title {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 13px;
}

.how-we-do-area .how-we-do-left-content .top p {
    color: #ffffff;
    opacity: 0.8;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

.theme-btn2,
.theme-btn {
    font-size: 18px;
    font-weight: 400;
    color: var(--light_white);
    background: var(--primary_color);
    display: inline-flex;
    align-items: center;
    padding: 13px 26px;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    transition: .3s;
    z-index: 1;
    overflow: hidden;
    text-decoration: none !important;
    gap: 10px;
}

.how-we-do-area .how-we-do-right-content {
    flex: 1;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
}

.how-we-do-area .how-we-do-right-content .how-we-do-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.how-we-do-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 10px;
    padding: 15px 32px 15px 15px;
    gap: 26px;
    position: relative;
    min-width: 255px;
}

.how-we-do-area .how-we-do-right-content .how-we-do-items .how-we-do-card .circle-shape {
    position: absolute;
    left: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    top: 50%;
    margin-top: -10px;
}

.how-we-do-area .how-we-do-right-content .how-we-do-items:first-child .how-we-do-card:first-child .circle-shape {
    display: none;
}

.how-we-do-area .how-we-do-right-content .how-we-do-items .how-we-do-card .line-shape {
    position: absolute;
    background-image: url(images/linenew.png);
    background-repeat: no-repeat;
    height: 1px;
    width: 268px;
    background-size: cover;
    z-index: -1;
    right: -100px;
    top: 50%;
}

.how-we-do-card .how-we-do-icon {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    background: rgb(73 147 207 / 10%);
}

.how-we-do-card .how-we-do-icon i {
    font-size: 2rem;
    color: #4993cf;
}

.how-we-do-card .how-we-do-icon img {
    display: none;
}

img {
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
}

.how-we-do-card .how-we-do-content {
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
}

.how-we-do-card .how-we-do-content h3 {
    color: #4993cf !important;
    font-size: 17px;
    margin-bottom: 5px;
}

.how-we-do-card .how-we-do-content h3 a {
    color: #4993cf !important;
}

.how-we-do-card .how-we-do-content p {
    margin: 0;
    color: rgb(28 28 28 / 85%);
}

.how-we-do-area .how-we-do-right-content .how-we-do-items .how-we-do-card .circle-shape:before {
    content: '';
    border-radius: 50%;
    background: #4993cf !important;
    width: 10px;
    height: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.how-we-do-area .how-we-do-right-content .how-we-do-items:nth-child(2) .how-we-do-card .circle-shape {
    left: auto;
    right: -10px;
}

.how-we-do-area .how-we-do-right-content .how-we-do-items:first-child .how-we-do-card:last-child .line-shape {
    height: 148px;
    background-image: url(images/linenew2.png);
    background-repeat: round;
}

.how-we-do-area .how-we-do-right-content .how-we-do-items:nth-child(2) .how-we-do-card+.how-we-do-card .line-shape {
    right: auto;
    left: -95px;
}

.how-we-do-area .how-we-do-right-content .how-we-do-items:nth-child(2) .how-we-do-card:first-child .line-shape {
    background-image: url(images/dashed-line.svg);
}

.how-we-do-area .how-we-do-right-content .how-we-do-items:nth-child(2) .how-we-do-card:first-child .line-shape {
    right: auto;
    left: -84px;
    background-image: url(images/linenew3.png);
    background-repeat: round;
}

.how-we-do-area .how-we-do-right-content .how-we-do-items:nth-child(2) .how-we-do-card:first-child .line-shape {
    height: 148px;
}

.theme-btn2,
.theme-btn {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    background: #4993cf;
    display: inline-flex;
    align-items: center;
    padding: 13px 26px;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    transition: .3s;
    z-index: 1;
    overflow: hidden;
    text-decoration: none !important;
    gap: 10px;
}

.how-we-do-area .how-we-do-right-content .how-we-do-items+.how-we-do-items {
    margin-top: 80px;
}

.how-we-do-area .how-we-do-right-content .how-we-do-items+.how-we-do-items {
    margin-top: 80px;
}

.how-we-do-area .how-we-do-right-content {
    flex: 1;
    padding: 20px 0;
}

.how-we-do-area .how-we-do-right-content .how-we-do-items:last-child .how-we-do-card .line-shape {
    display: none;
}

.section-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 5px;
    color: #4993cf;
    margin: 0;
    text-transform: uppercase;
}

/* Responsive Styles */

/* 1. Large Screens (1500px and above) */
@media (min-width: 1500px) {
    .how-we-do-area {
        padding-top: 95px;
    }
    .custom-container {
        max-width: 1550px;
        padding: 0 3rem;
    }
    .about-us-section .container,
    .hero-banner .container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    .how-we-do-area .custom-row {
        padding: 50px;
        flex-direction: row;
        background: #1c1c1c;
    }
    .how-we-do-area .how-we-do-left-content {
        width: 255px;
        flex: none;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 0;
        justify-content: space-between;
    }
    .section-title {
        font-size: 50px;
        line-height: 56px;
        letter-spacing: -1px;
    }
    .how-we-do-area .how-we-do-left-content .top p {
        font-size: 20px;
    }
    .how-we-do-area .how-we-do-right-content {
        flex: 1;
        padding: 20px 0;
    }
    .how-we-do-area .how-we-do-right-content .how-we-do-items {
        gap: 100px;
    }
    .how-we-do-card {
        min-width: 255px;
        max-width: none;
        padding: 15px 32px 15px 15px;
    }
    .how-we-do-card .how-we-do-icon {
        width: 70px;
        height: 70px;
    }
    .how-we-do-card .how-we-do-content {
        font-size: 17px;
    }
    .how-we-do-card .how-we-do-content h3 {
        font-size: 17px;
    }
    .how-we-do-area .how-we-do-right-content .how-we-do-items .how-we-do-card .line-shape {
        display: block !important;
    }
    .how-we-do-area .how-we-do-right-content .how-we-do-items:last-child .how-we-do-card .line-shape {
        display: none !important;
    }
    .how-we-do-area .how-we-do-right-content .how-we-do-items .how-we-do-card .circle-shape {
        display: block !important;
    }
    .how-we-do-area .how-we-do-right-content .how-we-do-items+.how-we-do-items {
        margin-top: 80px;
    }
    .how-we-do-area .custom-row .how-we-do-bg {
        opacity: 1;
    }
    .statistics-section::before {
        content: '';
        position: absolute;
        top: -40px;
        left: 195px;
        width: 135px;
        height: 125px;
        background-image: url(./images/dots.png);
        background-position: left top;
        background-repeat: no-repeat;
        background-size: contain;
        pointer-events: none;
        z-index: 0;
    }
}

/* 2. Desktop Screens (1024px to 1499px) */
@media (max-width: 1499px) {
    .how-we-do-area {
        padding-top: 60px;
    }
    .custom-container {
        padding: 0 3rem;
        max-width: 100%;
    }
    .how-we-do-area .custom-row {
        padding: 35px 25px;
        flex-direction: column !important;
        flex-wrap: wrap;
        background: #1c1c1c !important;
    }
    .how-we-do-area .how-we-do-left-content {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        margin-bottom: 35px;
        align-items: center !important;
        text-align: center;
        justify-content: flex-start !important;
    }
    .section-title {
        font-size: 38px;
        line-height: 44px;
        letter-spacing: -1px;
        color: #ffffff !important;
    }
    .how-we-do-area .how-we-do-left-content .top {
        margin-bottom: 25px;
    }
    .how-we-do-area .how-we-do-left-content .top p {
        font-size: 16px;
        margin-bottom: 20px;
        color: #ffffff !important;
        opacity: 0.8;
    }
    .how-we-do-area .how-we-do-right-content {
        width: 100% !important;
        flex: 1 1 100% !important;
        padding: 0 !important;
        overflow: visible;
    }
    .how-we-do-area .how-we-do-right-content .how-we-do-items {
        gap: 30px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        width: 100%;
        flex-direction: row;
    }
    .how-we-do-card {
        min-width: 200px !important;
        max-width: calc(50% - 15px);
        padding: 15px 20px 15px 15px !important;
        gap: 18px;
        flex-shrink: 0;
    }
    .how-we-do-card .how-we-do-icon {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }
    .how-we-do-card .how-we-do-content {
        font-size: 15px;
    }
    .how-we-do-card .how-we-do-content h3 {
        font-size: 15px !important;
    }
    .how-we-do-card .how-we-do-content p {
        font-size: 13px;
    }
    .how-we-do-area .how-we-do-right-content .how-we-do-items .how-we-do-card .line-shape,
    .how-we-do-area .how-we-do-right-content .how-we-do-items .how-we-do-card .circle-shape {
        display: none !important;
    }
    .how-we-do-area .how-we-do-right-content .how-we-do-items+.how-we-do-items {
        margin-top: 30px !important;
    }
    .how-we-do-area .custom-row .how-we-do-bg {
        opacity: 0.3;
    }
}

/* 3. Tablets (768px to 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .custom-container {
        padding: 0 2rem;
    }
    .about-us-section .container,
    .hero-banner .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .how-we-do-area .custom-row {
        padding: 30px;
    }
    .section-title {
        font-size: 36px;
        line-height: 42px;
    }
    .how-we-do-card {
        min-width: calc(50% - 20px);
    }
}

/* 4. Mobile Devices (below 768px) */
@media (max-width: 767px) {
    .custom-container {
        padding: 0 1.5rem !important;
    }
    .about-us-section .container,
    .hero-banner .container {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    .how-we-do-area .custom-row {
        padding: 25px 20px;
    }
    .section-subtitle {
        font-size: 12px;
        letter-spacing: 3px;
    }
    .section-title {
        font-size: 28px;
        line-height: 34px;
    }
    .how-we-do-area .how-we-do-right-content .how-we-do-items {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    .how-we-do-card {
        min-width: 100% !important;
        max-width: 100% !important;
    }
    .how-we-do-card .how-we-do-icon {
        width: 55px;
        height: 55px;
    }
    .how-we-do-card .how-we-do-content h3 {
        font-size: 14px;
    }
    .how-we-do-area .custom-row .how-we-do-bg {
        display: none;
    }
}

/* 5. Small Mobile Devices (below 480px) */
@media (max-width: 479px) {
    .how-we-do-area {
        padding-top: 40px;
    }
    .custom-container {
        padding: 0 1rem !important;
    }
    .about-us-section .container,
    .hero-banner .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .how-we-do-area .custom-row {
        padding: 20px 15px;
    }
    .section-title {
        font-size: 24px;
        line-height: 30px;
    }
    .how-we-do-card {
        padding: 12px 15px;
        gap: 12px;
    }
    .how-we-do-card .how-we-do-icon {
        width: 50px;
        height: 50px;
    }
    .how-we-do-card .how-we-do-content h3 {
        font-size: 13px;
    }
}

/* ========== How We Do Section Styles End ========== */

/* ========== Our Projects Section Styles Start ========== */
.our-projects-section {
    padding: 50px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.our-projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(73, 147, 207, 0.1), transparent);
}

.our-projects-section .line {
    display: none;
}

.our-projects-section .main-heading {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 35px;
    position: relative;
    letter-spacing: -0.3px;
}

.our-projects-section .container {
    position: relative;
    z-index: 1;
}

.our-projects-section .hgt-projects {
    max-width: 1000px;
    margin: 0 auto;
}

.our-projects-section .carousel {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.our-projects-section .carousel-inner {
    border-radius: 16px;
    overflow: hidden;
}

.our-projects-section .project-pic {
    width: 100%;
    height: 450px;
    object-fit:contain;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 16px;
}

.our-projects-section .carousel-item {
    position: relative;
    overflow: hidden;
}

.our-projects-section .carousel-item:hover .project-pic {
    transform: scale(1.03);
}

.our-projects-section .carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 25px 20px 25px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 60%, transparent 100%);
    text-align: center;
    border-radius: 0 0 16px 16px;
    z-index: 1;
}

.our-projects-section .web-name {
    margin-bottom: 0;
}

.our-projects-section .web-name a {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(73, 147, 207, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.our-projects-section .web-name a::after {
    content: '→';
    font-size: 1.1rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.our-projects-section .web-name a:hover {
    background: rgba(73, 147, 207, 0.35);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
    padding-right: 16px;
}

.our-projects-section .web-name a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Carousel Indicators */
.our-projects-section .carousel-indicators {
    margin-bottom: 50px;
    z-index: 10;
    position: relative;
}

.our-projects-section .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(73, 147, 207, 0.4);
    border: 2px solid rgba(73, 147, 207, 0.6);
    margin: 0 5px;
    transition: all 0.3s ease;
    opacity: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.our-projects-section .carousel-indicators button.active {
    background: #4993cf;
    border-color: #4993cf;
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(73, 147, 207, 0.4);
}

.our-projects-section .carousel-indicators button:hover {
    background: rgba(73, 147, 207, 0.7);
    border-color: rgba(73, 147, 207, 0.9);
}

/* Carousel Controls */
.our-projects-section .carousel-control-prev,
.our-projects-section .carousel-control-next {
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    opacity: 0.9;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.our-projects-section .carousel-control-prev {
    left: 15px;
}

.our-projects-section .carousel-control-next {
    right: 15px;
}

.our-projects-section .carousel-control-prev:hover,
.our-projects-section .carousel-control-next:hover {
    opacity: 1;
    background: #ffffff;
    border-color: #4993cf;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(73, 147, 207, 0.25);
}

.our-projects-section .carousel-control-prev-icon,
.our-projects-section .carousel-control-next-icon {
    width: 18px;
    height: 18px;
    background-size: 100% 100%;
    filter: invert(40%) sepia(89%) saturate(1352%) hue-rotate(180deg) brightness(95%) contrast(87%);
}

.our-projects-section .carousel-control-prev:hover .carousel-control-prev-icon,
.our-projects-section .carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(40%) sepia(89%) saturate(1352%) hue-rotate(180deg) brightness(95%) contrast(100%);
}

/* Hide Scroll */
.our-projects-section .hide-scroll {
    overflow-x: hidden;
}

/* Responsive Design for Our Projects Section */
@media (max-width: 991.98px) {
    .our-projects-section {
        padding: 45px 0;
    }

    .our-projects-section .main-heading {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 30px;
    }

    .our-projects-section .project-pic {
        height: 380px;
    }

    .our-projects-section .carousel-control-prev,
    .our-projects-section .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .our-projects-section .carousel-control-prev {
        left: 12px;
    }

    .our-projects-section .carousel-control-next {
        right: 12px;
    }
}

@media (max-width: 767.98px) {
    .our-projects-section {
        padding: 40px 0;
    }

    .our-projects-section .main-heading {
        font-size: clamp(1.5rem, 5vw, 1.75rem);
        margin-bottom: 25px;
    }

    .our-projects-section .hgt-projects {
        max-width: 100%;
    }

    .our-projects-section .carousel {
        border-radius: 12px;
    }

    .our-projects-section .carousel-inner {
        border-radius: 12px;
    }

    .our-projects-section .project-pic {
        height: 320px;
        border-radius: 12px;
    }

    .our-projects-section .carousel-caption {
        padding: 18px 15px;
        border-radius: 0 0 12px 12px;
    }

    .our-projects-section .web-name a {
        font-size: 0.9rem;
        padding: 8px 18px;
    }

    .our-projects-section .carousel-control-prev,
    .our-projects-section .carousel-control-next {
        width: 36px;
        height: 36px;
    }

    .our-projects-section .carousel-control-prev {
        left: 10px;
    }

    .our-projects-section .carousel-control-next {
        right: 10px;
    }

    .our-projects-section .carousel-control-prev-icon,
    .our-projects-section .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }

    .our-projects-section .carousel-indicators {
        margin-bottom: 60px;
        z-index: 10;
    }

    .our-projects-section .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 4px;
        border: 2px solid rgba(73, 147, 207, 0.6);
    }

    .our-projects-section .carousel-indicators button.active {
        width: 24px;
    }
}

@media (max-width: 575.98px) {
    .our-projects-section {
        padding: 35px 0;
    }

    .our-projects-section .main-heading {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .our-projects-section .carousel {
        border-radius: 10px;
    }

    .our-projects-section .carousel-inner {
        border-radius: 10px;
    }

    .our-projects-section .project-pic {
        height: 280px;
        border-radius: 10px;
    }

    .our-projects-section .carousel-caption {
        padding: 15px 12px;
        border-radius: 0 0 10px 10px;
    }

    .our-projects-section .web-name a {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .our-projects-section .carousel-control-prev,
    .our-projects-section .carousel-control-next {
        width: 32px;
        height: 32px;
    }

    .our-projects-section .carousel-control-prev {
        left: 8px;
    }

    .our-projects-section .carousel-control-next {
        right: 8px;
    }

    .our-projects-section .carousel-control-prev-icon,
    .our-projects-section .carousel-control-next-icon {
        width: 14px;
        height: 14px;
    }

    .our-projects-section .carousel-indicators {
        margin-bottom: 0;
        z-index: 10;
    }

    .our-projects-section .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 3px;
        border: 2px solid rgba(73, 147, 207, 0.6);
    }

    .our-projects-section .carousel-indicators button.active {
        width: 22px;
    }
}
/* ========== Our Projects Section Styles End ========== */

/* ========== Let's Talk Section Styles Start ========== */
.lets-talk-section {
    padding: 100px 0;
    background-image: url('./images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .lets-talk-section {
        padding: 70px 0;
    }
}


.lets-talk-section .container {
    position: relative;
    z-index: 2;
}

.lets-talk-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.lets-talk-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 12px;
    opacity: 0.9;
    position: relative;
    padding-bottom: 10px;
}

.lets-talk-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.lets-talk-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin: 0 0 25px 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.lets-talk-btn {
    display: inline-block;
    background: #121212;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lets-talk-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.lets-talk-btn:hover {
    background: #d4af37;
    color: #121212;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.lets-talk-btn:hover::before {
    width: 300px;
    height: 300px;
}

.lets-talk-btn:active {
    transform: translateY(-1px);
}

/* Responsive Design for Let's Talk Section */
@media (max-width: 991.98px) {
    .lets-talk-section {
        padding: 50px 0;
    }

    .lets-talk-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        margin-bottom: 20px;
    }

    .lets-talk-btn {
        padding: 14px 35px;
        font-size: 0.95rem;
    }
}

@media (max-width: 767.98px) {
    .lets-talk-section {
        padding: 40px 0;
    }

    .lets-talk-content {
        padding: 0 15px;
    }

    .lets-talk-label {
        font-size: 0.8rem;
        margin-bottom: 10px;
        padding-bottom: 8px;
    }

    .lets-talk-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .lets-talk-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .lets-talk-section {
        padding: 35px 0;
    }

    .lets-talk-label {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
        margin-bottom: 8px;
        padding-bottom: 6px;
    }

    .lets-talk-title {
        font-size: 1.5rem;
        margin-bottom: 18px;
    }

    .lets-talk-btn {
        padding: 12px 28px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
    }
}
/* ========== Let's Talk Section Styles End ========== */

/* ========== Footer Styles Start ========== */
#footer {
    background-color: #f5f7fb;
    background-image: url('./images/footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: #0f172a;
    padding-top: 80px;
    padding-bottom: 0;
}


.footer .footer-top {
    position: relative;
    z-index: 1;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.footer .footer-bottom {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
}

/* Footer Logo Wrap */
.footer-logo-wrap {
    margin-bottom: 20px;
}

.footer-top-logo {
    display: inline-block;
    max-width: 180px;
    transition: all 0.3s ease;
}

.footer-top-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.footer-top-logo:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Footer Text */
.footer .textwidget {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Footer Title */
.footer-title {
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4993cf, #0ea5e9);
    border-radius: 2px;
}

/* Footer Social Icons */
.footer_social {
    display: flex;
    gap: 12px;
    list-style: none;
    margin: 25px 0 0 0;
    padding: 0;
}

.footer_social li {
    margin: 0;
}

.footer_social li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    color: #0f172a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(15, 23, 42, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.footer_social li a:hover {
    background: #4993cf;
    color: #ffffff;
    border-color: #4993cf;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(73, 147, 207, 0.3);
}

.footer_social li a span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_social li a i {
    font-size: 0.9rem;
}

/* Footer Menu */
.footer .widget_nav_menu ul,
.footer .menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer .widget_nav_menu li,
.footer .menu li {
    margin: 0 0 12px 0;
    padding: 0;
}

.footer .widget_nav_menu a,
.footer .menu a {
    color: #64748b;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer .widget_nav_menu a:hover,
.footer .menu a:hover {
    color: #4993cf;
    padding-left: 5px;
}

.footer .widget_nav_menu a::before,
.footer .menu a::before {
    content: '→';
    margin-right: 6px;
    opacity: 1;
    transition: all 0.3s ease;
}

.footer .widget_nav_menu a:hover::before,
.footer .menu a:hover::before {
    opacity: 1;
}

/* Footer Contact Widget */
.widget_contact_widget {
    margin-top: 0;
}

.widget_contact_widget .fa-ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 0;
}

.widget_contact_widget .fa-ul li {
    margin: 0 0 18px 0;
    padding: 0 0 0 2.5em;
    color: #121212;
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
}

.widget_contact_widget .fa-ul i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #4993cf;
    font-size: 1.1rem;
    width: 1.2em;
    text-align: center;
}

.widget_contact_widget .fa-ul a {
    color:#121212;
    text-decoration: none;
    transition: all 0.3s ease;
}

.widget_contact_widget .fa-ul a:hover {
    color: #4993cf;
}

.widget_contact_widget .address1 i {
    margin-top: 0;
}

/* Newsletter Section */
.widget_custom_html {
    margin: 0;
}

.widget_custom_html .textwidget {
    margin-bottom: 0;
}

.widget_custom_html .textwidget p {
    margin-bottom: 25px;
    color: #121212;
    font-size: 0.95rem;
    line-height: 1.75;
}

.widget_custom_html .textwidget p:last-of-type {
    margin-bottom: 0;
}

/* Newsletter Widget Specific */
.footer-3 .widget_custom_html .textwidget {
    margin-bottom: 0;
}

.footer-3 .widget_custom_html .textwidget p {
    margin-bottom: 25px;
}

/* Footer Newsletter Form */
.mc4wp-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
}

.mc4wp-form-fields {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mc4wp-form>p:first-child,
.mc4wp-form-fields>p:first-child {
    margin: 0 0 25px 0;
    color: #121212;
    font-size: 0.95rem;
    line-height: 1.75;
    padding: 0;
}

.mc4wp-form>p:last-child,
.mc4wp-form-fields>p:last-child {
    margin: 0;
    position: relative;
    width: 100%;
    display: block;
    padding: 0;
}

.mc4wp-form input[type="email"],
.mc4wp-form input[type="text"] {
    width: 100%;
    padding: 15px 65px 15px 22px;
    border: 1px solid #4993cf;
    border-radius: 50px;
    background: #ffffff;
    color: #0f172a;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: none;
    display: block;
    font-weight: 400;
    line-height: 1.5;
}

.mc4wp-form input[type="email"]:focus,
.mc4wp-form input[type="text"]:focus {
    outline: none;
    background: #ffffff;
    border-color: #4993cf;
    box-shadow: none;
}

.mc4wp-form input::placeholder {
    color: #94a3b8;
    font-weight: 400;
    opacity: 0.8;
}

.mc4wp-form button,
.mc4wp-form input[type="submit"]:not(.paper-plane input[type="submit"]) {
    background: linear-gradient(135deg, #4993cf 0%, #0ea5e9 100%);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    box-shadow: 0 4px 12px rgba(73, 147, 207, 0.3);
}

.mc4wp-form .paper-plane {
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    z-index: 10;
    margin: 0;
    padding: 0;
    line-height: 0;
    width: 48px;
    height: 48px;
}

.mc4wp-form .paper-plane input[type="submit"] {
    width: 48px;
    height: 48px;
    padding: 0;
    margin: 0;
    background: #4993cf;
    color: #ffffff;
    border-radius: 50%;
    position: relative;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(73, 147, 207, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    text-indent: -9999px;
    overflow: visible;
    vertical-align: middle;
}

.mc4wp-form .paper-plane input[type="submit"]::before {
    content: "\f1d8";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.1rem;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-indent: 0;
    line-height: 1;
    display: block;
    width: auto;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

/* Paper plane icon styling */
.mc4wp-form .paper-plane i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.1rem;
    color: #ffffff;
    z-index: 2;
    pointer-events: none;
    display: block;
    line-height: 1;
}

.mc4wp-form .paper-plane input[type="submit"]:hover {
    background: #0ea5e9;
    box-shadow: 0 4px 12px rgba(73, 147, 207, 0.35);
    transform: none;
}

.mc4wp-form button:hover,
.mc4wp-form input[type="submit"]:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(73, 147, 207, 0.4);
}

/* Footer Bottom / Copyright */
.footer-bottom {
    background: rgba(255, 255, 255, 0.8);
    color: #64748b;
    font-size: 0.9rem;
}

.footer-bottom .row {
    align-items: center;
    display: flex;
}

.footer-bottom .copy2 {
    display: flex;
    justify-content: flex-end;
}

.footer-bottom .copy2 p {
    margin: 0;
    color: #121212;
    font-size: 0.9rem;
}

.footer-bottom .copy2 a {
    color: #121212;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom .copy2 a:hover {
    color: #4993cf;
}

.copyright {
    margin: 0;
    padding: 0 !important;
}

.copyright p {
    margin: 0;
    color: #121212;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.copyright a {
    color: #4993cf;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.copyright a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.copyright-widget {
    text-align: right;
    min-height: 1px;
    display: block;
}

.copyright-widget .menu {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.copyright-widget .menu li {
    margin: 0;
}

.copyright-widget .menu a {
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    padding: 0 8px;
}

.copyright-widget .menu a:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -4px;
    color: #4993cf;
}

.copyright-widget .menu a:hover {
    color: #4993cf;
}

/* Footer Column Spacing */
.footer .col-lg-3,
.footer .col-lg-4,
.footer .footer-0,
.footer .footer-1,
.footer .footer-2,
.footer .footer-3 {
    margin-bottom: 40px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    #footer {
        padding-top: 40px;
    }

    .footer .footer-top {
        padding-bottom: 30px;
    }

    .footer .footer-bottom {
        padding: 20px 0;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer .col-lg-3,
    .footer .col-lg-4,
    .footer .footer-0,
    .footer .footer-1,
    .footer .footer-2,
    .footer .footer-3 {
        margin-bottom: 30px;
    }

    .copyright {
        text-align: center !important;
        margin-bottom: 15px;
    }

    .copyright-widget {
        text-align: center !important;
    }

    .copyright-widget .menu {
        justify-content: center;
        gap: 16px;
    }

    .footer_social {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    #footer {
        padding-top: 30px;
    }

    .footer .footer-top {
        padding-bottom: 20px;
    }

    .footer-top-logo {
        max-width: 150px;
    }

    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .footer-title::after {
        width: 30px;
    }

    .footer .textwidget {
        font-size: 0.9rem;
    }

    .footer .widget_nav_menu a,
    .footer .menu a {
        font-size: 0.9rem;
    }

    .widget_contact_widget .fa-ul li {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .mc4wp-form input[type="email"],
    .mc4wp-form input[type="text"] {
        padding: 15px 12px;
        font-size: 0.9rem;
    }

    .mc4wp-form button,
    .mc4wp-form input[type="submit"] {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .footer_social {
        gap: 10px;
    }

    .footer_social li a {
        width: 36px;
        height: 36px;
    }

    .copyright-widget .menu {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }
}

/* ========== Footer Styles End ========== */

/* ========== About Page Styles Start ========== */

/* About Hero Section */
.about-hero-section {
    padding: 120px 0 80px;
    background-image: url('./images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(73, 147, 207, 0.75) 50%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 1;
}

.about-hero-section .container {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    text-align: center;
}

.about-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
}

.about-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.about-breadcrumb a:hover {
    opacity: 0.8;
}

.about-breadcrumb i {
    color: #ffffff;
    font-size: 0.75rem;
    opacity: 0.8;
}

.about-breadcrumb span {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
}

.about-hero-title {
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}


/* About Company Section */
.about-company-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-company-image {
    padding-right: 2rem;
}

.about-company-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-company-content {
    padding-left: 2rem;
}

.about-company-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.about-company-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #4993cf 0%, #0ea5e9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-company-icon i {
    color: #ffffff;
    font-size: 1.25rem;
}

.about-company-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #4993cf;
}

.about-company-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1c1c1c;
    margin-bottom: 1.5rem;
}

.about-company-title .highlight-text {
    color: #4993cf;
}

.about-company-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 2.5rem;
}

.about-company-stats {
    margin-bottom: 2.5rem;
}

.stat-progress-item {
    margin-bottom: 2rem;
}

.stat-progress-item:last-child {
    margin-bottom: 0;
}

.stat-progress-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.stat-progress-percentage {
    font-size: 1.75rem;
    font-weight: 800;
    color: #4993cf;
    line-height: 1;
}

.stat-progress-label {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
}

.stat-progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.stat-progress-fill {
    height: 100%;
    min-height: 8px;
    background: linear-gradient(90deg, #4993cf 0%, #0ea5e9 100%);
    border-radius: 10px;
    width: 0%;
    transition: none;
    display: block;
    position: relative;
    z-index: 1;
}

.about-company-cta {
    margin-top: 2rem;
}

.about-company-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2rem;
    background: #1c1c1c;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #1c1c1c;
}

.about-company-btn i {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #4993cf;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #ffffff;
}

.about-company-btn:hover {
    background: #4993cf;
    border-color: #4993cf;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(73, 147, 207, 0.3);
}

.about-company-btn:hover i {
    background: #ffffff;
    color: #4993cf;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: #121212;
    position: relative;
    overflow: hidden;
}


.mission-image-side {
    position: relative;
    z-index: 1;
}

.mission-image-stack {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px 0 0;
    min-height: 500px;
}

.mission-img-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #1e293b;
}

.mission-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mission-img-top {
    position: absolute;
    top: 0;
    left: 25px;
    width: 63%;
    z-index: 2;
    aspect-ratio: 4 / 3;
}

.mission-img-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 83%;
    z-index: 1;
    aspect-ratio: 4 / 3;
}

.mission-img-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
    z-index: 5;
}

.mission-dots-pattern {
    position: absolute;
    top: -7px;
    right: 8px;
    width: 200px;
    height: 200px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
    filter: drop-shadow(0 0 10px rgba(73, 147, 207, 0.3));
}

.mission-dots-pattern img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

@keyframes floatPattern {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(-5px, -5px) rotate(2deg);
        opacity: 0.8;
    }
}

.mission-content-side {
    position: relative;
    z-index: 1;
    padding-left: 2rem;
}

.mission-content-wrapper {
    width: 100%;
    position: relative;
}

.mission-label-box {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin-bottom: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.mission-label-box span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
}

.mission-main-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.mission-main-title .highlight-text {
    color: #4993cf;
}

.mission-intro-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
}

.mission-services-list {
    margin-bottom: 2rem;
}

.mission-service-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mission-service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(73, 147, 207, 0.3);
    transform: translateX(5px);
}

.mission-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.mission-icon-blue {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
}

.mission-icon-orange {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
}

.mission-service-icon i {
    font-size: 1.4rem;
    color: #ffffff;
}

.mission-service-content {
    flex: 1;
}

.mission-service-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.mission-service-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.mission-image-stack .mission-discover-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.3);
    z-index: 15;
    pointer-events: auto;
}

.mission-image-stack .mission-discover-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.4);
    color: #ffffff;
}

.mission-image-stack .mission-discover-btn i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.mission-image-stack .mission-discover-btn:hover i {
    transform: translateX(5px);
}

/* Company Story Section */
.company-story-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.story-image-wrapper {
    position: relative;
    padding-left: 2rem;
}

.story-image-bg {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: calc(100% + 40px);
    background: linear-gradient(135deg, rgba(73, 147, 207, 0.1) 0%, rgba(15, 23, 42, 0.05) 100%);
    border-radius: 20px;
    z-index: 0;
}

.story-image {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.story-content {
    padding-right: 2rem;
}

/* Core Values Section - Modern Redesign */
.core-values-section {
    padding: 90px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.values-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(73, 147, 207, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(73, 147, 207, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.core-values-section .container {
    position: relative;
    z-index: 1;
}

.values-main-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.values-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 0;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.value-card-modern {
    height: 100%;
    perspective: 1000px;
}

.value-card-inner {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.25rem 2rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.value-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4993cf, #0ea5e9, #4993cf);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card-modern:hover .value-card-inner {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(73, 147, 207, 0.3);
    box-shadow: 0 20px 60px rgba(73, 147, 207, 0.15), 0 0 0 1px rgba(73, 147, 207, 0.1);
}

.value-card-modern:hover .value-card-inner::before {
    transform: scaleX(1);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.value-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.8);
}

.value-icon-bg-1, .value-icon-bg-3, .value-icon-bg-5 {
    background: linear-gradient(135deg, rgba(73, 147, 207, 0.12) 0%, rgba(14, 165, 233, 0.08) 100%);
}

.value-icon-bg-2, .value-icon-bg-4, .value-icon-bg-6 {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08) 0%, rgba(59, 130, 246, 0.05) 100%);
}


.value-card-modern:hover .value-icon-bg {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
}

.value-card-modern:hover .value-icon {
    background: linear-gradient(135deg, #4993cf 0%, #0ea5e9 100%);
    transform: scale(1.1) rotateY(10deg);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(73, 147, 207, 0.3);
}

.value-icon i {
    font-size: 1.5rem;
    color: #4993cf;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.value-card-modern:hover .value-icon i {
    color: #ffffff;
    transform: scale(1.1);
}

.value-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.value-card-modern:hover .value-title {
    color: #4993cf;
}

.value-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.value-card-modern:hover .value-description {
    color: #475569;
}

.value-card-decoration {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #4993cf, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 2px;
}

.value-card-modern:hover .value-card-decoration {
    opacity: 1;
}

/* Responsive Design for Values Section */
@media (max-width: 1199.98px) {
    .values-main-title {
        font-size: 2.5rem;
    }
    
    .value-card-inner {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 991.98px) {
    .core-values-section {
        padding: 80px 0;
    }
    
    .values-main-title {
        font-size: 2.25rem;
    }
    
    .values-subtitle {
        font-size: 1.1rem;
    }
    
    .value-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .value-icon {
        width: 80px;
        height: 80px;
    }
    
    .value-icon i {
        font-size: 2.25rem;
    }
}

@media (max-width: 767.98px) {
    .core-values-section {
        padding: 60px 0;
    }
    
    .values-main-title {
        font-size: 2rem;
    }
    
    .values-subtitle {
        font-size: 1rem;
    }
    
    .value-card-inner {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .value-icon-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 1.5rem;
    }
    
    .value-icon {
        width: 75px;
        height: 75px;
        border-radius: 18px;
    }
    
    .value-icon i {
        font-size: 2rem;
    }
    
    .value-title {
        font-size: 1.5rem;
    }
    
    .value-description {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .value-card-modern:hover .value-card-inner {
        transform: translateY(-8px) scale(1.01);
    }
}

@media (max-width: 575.98px) {
    .core-values-section {
        padding: 50px 0;
    }
    
    .values-main-title {
        font-size: 1.75rem;
    }
    
    .value-card-inner {
        padding: 1.75rem 1.25rem;
    }
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.why-choose-content {
    padding-right: 2rem;
}

.lets-talk-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles for About Page */
@media (max-width: 1199.98px) {
    .about-hero-section {
        padding: 150px 0 100px;
        min-height: 550px;
    }

    .about-hero-content {
        padding-right: 1rem;
    }

    .about-hero-image {
        padding-left: 1rem;
    }

    .about-company-image {
        padding-right: 1rem;
    }

    .about-company-content {
        padding-left: 1rem;
    }

    .story-content {
        padding-right: 1rem;
    }

    .story-image-wrapper {
        padding-left: 1rem;
    }

    .why-choose-content {
        padding-right: 1rem;
    }
}

@media (max-width: 991.98px) {
    .about-hero-section {
        padding: 80px 0 60px;
        min-height: 280px;
    }

    .about-company-section {
        padding: 60px 0;
    }

    .about-company-image {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .about-company-content {
        padding-left: 0;
        text-align: center;
    }

    .about-company-header {
        justify-content: center;
    }

    .mission-vision-section {
        min-height: auto;
    }

    .mission-image-side,
    .mission-content-side {
        min-height: 500px;
    }

    .mission-vision-section {
        padding: 60px 0;
    }

    .mission-image-stack {
        max-width: 100%;
        padding: 10px 0 0;
        min-height: 400px;
    }

    .mission-img-top {
        width: 50%;
    }

    .mission-img-bottom {
        width: 70%;
    }

    .mission-dots-pattern {
        width: 150px;
        height: 150px;
        top: -20px;
        right: -20px;
    }

    .mission-image-stack .mission-discover-btn {
        position: relative;
        margin-top: 20px;
        bottom: auto;
        left: auto;
    }

    .mission-content-side {
        padding-left: 0;
        padding-right: 0;
    }

    .mission-main-title {
        font-size: 2rem;
    }

    .mission-service-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .mission-service-icon {
        margin: 0 auto;
    }

    .company-story-section {
        padding: 60px 0;
    }

    .story-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .story-image-wrapper {
        padding-left: 0;
    }

    .about-us-label {
        justify-content: center;
    }

    .core-values-section {
        padding: 60px 0;
    }

    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .about-hero-section {
        padding: 70px 0 50px;
        min-height: 250px;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-breadcrumb {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .about-company-title {
        font-size: 1.75rem;
    }

    .about-company-description {
        font-size: 1rem;
    }

    .stat-progress-percentage {
        font-size: 1.5rem;
    }

    .stat-progress-label {
        font-size: 0.9rem;
    }

    .about-company-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .mission-vision-section {
        min-height: auto;
    }

    .mission-vision-section {
        padding: 60px 0;
    }

    .mission-vision-section .container {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .mission-vision-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .mission-vision-section [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .mission-image-side {
        order: 2;
        margin-top: 3rem;
        min-height: auto;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .mission-content-side {
        order: 1;
        padding: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        min-height: auto;
        text-align: left;
    }

    .mission-content-wrapper {
        width: 100%;
    }

    .mission-label-box {
        margin: 0 0 1rem 0;
        display: inline-block;
    }

    .mission-main-title {
        font-size: clamp(1.75rem, 5vw, 2rem);
        margin-bottom: 1rem;
        text-align: left;
        line-height: 1.3;
    }

    .mission-intro-text {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-align: left;
        line-height: 1.7;
    }

    .mission-image-stack {
        padding: 20px 0 0;
        min-height: 400px;
        max-width: 100%;
        margin: 0 auto;
        position: relative;
    }

    .mission-img-top {
        position: absolute;
        top: 0;
        left: 0;
        width: 55%;
        z-index: 2;
        aspect-ratio: 4 / 3;
    }

    .mission-img-bottom {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 75%;
        z-index: 1;
        aspect-ratio: 4 / 3;
    }

    .mission-dots-pattern {
        width: 120px;
        height: 120px;
        top: -15px;
        right: -15px;
    }

    .mission-image-stack .mission-discover-btn {
        position: absolute;
        bottom: 0;
        left: 0;
        display: inline-block;
        padding: 12px 24px;
        font-size: 0.9rem;
        z-index: 15;
    }

    .mission-service-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        flex-direction: row;
        text-align: left;
        gap: 1.25rem;
    }

    .mission-service-icon {
        margin: 0;
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }

    .mission-service-icon i {
        font-size: 1.4rem;
    }

    .mission-service-content {
        flex: 1;
    }

    .mission-service-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        text-align: left;
    }

    .mission-service-text {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }

    .mission-discover-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .value-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }

    .value-icon {
        width: 80px;
        height: 80px;
    }

    .value-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .about-hero-section {
        padding: 60px 0 40px;
    }

    .about-hero-title {
        font-size: 1.75rem;
    }

    .mission-vision-section {
        padding: 50px 0;
    }

    .mission-vision-section .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .mission-vision-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .mission-vision-section [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .mission-image-side {
        margin-bottom: 2rem;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .mission-content-side {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .mission-image-stack {
        min-height: 350px;
        padding: 15px 0 0;
    }

    .mission-img-top {
        width: 50%;
        left: 0;
    }

    .mission-img-bottom {
        width: 92%;
        right: 0;
    }

    .mission-dots-pattern {
        width: 200px;
        height: 100px;
        top: -10px;
        right: 0;
    }

    .mission-main-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .mission-intro-text {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }

    .mission-service-item {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
        gap: 1rem;
    }

    .mission-service-icon {
        width: 50px;
        height: 50px;
    }

    .mission-service-icon i {
        font-size: 1.3rem;
    }

    .mission-service-title {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }

    .mission-service-text {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .mission-image-stack .mission-discover-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .mission-card {
        padding: 1.5rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-title {
        font-size: 1.25rem;
    }
}

/* ========== Our Company's Mission Section Styles Start ========== */
.about-sec3 {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

.over-hide {
    overflow: hidden;
}

.about-sec3 .line {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.about-sec3 .line img {
    max-width: 200px;
    height: auto;
    opacity: 0.6;
}

.main-heading {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1c1c1c;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.wht80 {
    max-width: 85%;
    margin: 0 auto 4rem;
}

.mission-intro {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #475569;
    text-align: center;
}

.mission-intro b {
    color: #4993cf;
    font-weight: 700;
}

.plans {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border-left: 4px solid;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-top: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.plans:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-left-width: 5px;
}

.plans i {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.plans:hover i {
    transform: translateY(-3px);
}

.plans h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.plans p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.plans a {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.plans a:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Color 1 - Website Design */
.color1-border {
    border-left-color: #f97316;
}

.color1-i {
    color: #f97316;
}

.color1 {
    color: #f97316;
}

.color1-bg {
    background: #f97316;
}

.color1-bg:hover {
    background: #ea580c;
}

/* Color 2 - Web Development */
.color2-border {
    border-left-color: #4993cf;
}

.color2-i {
    color: #4993cf;
}

.color2 {
    color: #4993cf;
}

.color2-bg {
    background: #4993cf;
}

.color2-bg:hover {
    background: #3b7ba8;
}

/* Color 3 - E-Commerce */
.color3-border {
    border-left-color: #10b981;
}

.color3-i {
    color: #10b981;
}

.color3 {
    color: #10b981;
}

.color3-bg {
    background: #10b981;
}

.color3-bg:hover {
    background: #059669;
}

/* Color 4 - Mobile App */
.color4-border {
    border-left-color: #4993cf;
}

.color4-i {
    color: #4993cf;
}

.color4 {
    color: #4993cf;
}

.color4-bg {
    background: #4993cf;
}

.color4-bg:hover {
    background: #0ea5e9;
}

/* Color 5 - Digital Marketing */
.color5-border {
    border-left-color: #ef4444;
}

.color5-i {
    color: #ef4444;
}

.color5 {
    color: #ef4444;
}

.color5-bg {
    background: #ef4444;
}

.color5-bg:hover {
    background: #dc2626;
}

/* Color 6 - Graphics Designing */
.color6-border {
    border-left-color: #f59e0b;
}

.color6-i {
    color: #f59e0b;
}

.color6 {
    color: #f59e0b;
}

.color6-bg {
    background: #f59e0b;
}

.color6-bg:hover {
    background: #d97706;
}

/* Responsive Styles for Mission Section */
@media (max-width: 1399.98px) {
    .wht80 {
        max-width: 90%;
    }
}

@media (max-width: 1199.98px) {
    .about-sec3 {
        padding: 80px 0;
    }

    .wht80 {
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .about-sec3 {
        padding: 60px 0;
    }

    .plans {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .plans a {
        align-self: center;
    }

    .plans i {
        font-size: 2.25rem;
    }

    .plans h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .about-sec3 {
        padding: 50px 0;
    }

    .main-heading {
        font-size: 2rem;
    }

    .mission-intro {
        font-size: 1rem;
    }

    .plans {
        padding: 1.75rem 1.25rem;
    }

    .plans i {
        font-size: 2rem;
    }

    .plans h3 {
        font-size: 1.2rem;
    }

    .plans p {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .about-sec3 .line img {
        max-width: 150px;
    }

    .plans {
        padding: 1.5rem 1rem;
    }

    .plans i {
        font-size: 1.75rem;
    }
}

/* ========== Our Company's Mission Section Styles End ========== */

/* ========== What We're Offering Section Styles Start ========== */
.what-we-offering-section {
    padding: 100px 0;
    background:#121212;
    position: relative;
    overflow: hidden;
}

.offering-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(73, 147, 207, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(73, 147, 207, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(73, 147, 207, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(73, 147, 207, 0.05) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    opacity: 0.3;
    z-index: 0;
}

.what-we-offering-section .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
}

.offering-header {
    padding-right: 2rem;
}

.offering-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.offering-label .label-line {
    width: 50px;
    height: 3px;
    background: #4993cf;
    border-radius: 2px;
}

.offering-label .label-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #4993cf;
}

.offering-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}

.offering-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding-left: 2rem;
}

.offering-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 0;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4993cf 0%, #0ea5e9 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.offering-card:hover::before {
    transform: scaleX(1);
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(73, 147, 207, 0.3);
}

.offering-card-featured {
    border: 2px solid #4993cf;
    position: relative;
}

.offering-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4993cf;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.offering-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(73, 147, 207, 0.1) 0%, rgba(73, 147, 207, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.4s ease;
    position: relative;
}

.offering-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 20px;
    background: linear-gradient(135deg, #4993cf 0%, #0ea5e9 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.offering-card:hover .offering-icon {
    transform: scale(1.1);
    background: transparent;
}

.offering-card:hover .offering-icon::after {
    opacity: 1;
}

.offering-icon i {
    font-size: 2rem;
    color: #4993cf;
    transition: color 0.4s ease;
    z-index: 1;
    position: relative;
}

.offering-card:hover .offering-icon i {
    color: #ffffff;
}

.offering-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.offering-card-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
    flex-grow: 1;
}

.offering-cards-row {
    display: flex;
    flex-wrap: wrap;
}

.offering-cards-row > div {
    display: flex;
    flex: 1 1 0;
    min-width: 0;
}

.offering-cards-row .offering-card {
    width: 100%;
}

/* Responsive Styles for Offering Section */
@media (min-width: 1200px) {
    .what-we-offering-section .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 1199.98px) {
    .what-we-offering-section {
        padding: 80px 0;
    }

    .offering-header {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .offering-description {
        padding-left: 0;
        margin-top: 0;
    }

    .offering-cards-row {
        margin-top: 2rem;
    }
}

@media (max-width: 991.98px) {
    .what-we-offering-section {
        padding: 70px 0;
    }

    .offering-header {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }

    .offering-label {
        justify-content: center;
    }

    .offering-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }

    .offering-description {
        padding-left: 0;
        text-align: center;
        margin-top: 0;
        font-size: 1rem;
    }

    .offering-cards-row {
        margin-top: 2.5rem;
    }

    .offering-cards-row > div {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 1.5rem;
    }

    .offering-card {
        padding: 1.75rem 1.25rem;
        margin-bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .what-we-offering-section {
        padding: 60px 0;
    }

    .offering-header {
        margin-bottom: 1.5rem;
    }

    .offering-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.3;
    }

    .offering-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .offering-cards-row {
        margin-top: 2rem;
    }

    .offering-cards-row > div {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1.25rem;
    }

    .offering-card {
        padding: 1.75rem 1.25rem;
    }

    .offering-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1rem;
    }

    .offering-icon i {
        font-size: 1.75rem;
    }

    .offering-card-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .offering-card-description {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .offering-badge {
        top: 12px;
        right: 12px;
        padding: 5px 12px;
        font-size: 0.7rem;
    }
}

@media (max-width: 575.98px) {
    .what-we-offering-section {
        padding: 50px 0;
    }

    .offering-header {
        margin-bottom: 1.25rem;
    }

    .offering-label {
        margin-bottom: 1rem;
    }

    .offering-label .label-line {
        width: 40px;
        height: 2px;
    }

    .offering-label .label-text {
        font-size: 12px;
    }

    .offering-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .offering-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .offering-cards-row {
        margin-top: 1.5rem;
    }

    .offering-cards-row > div {
        margin-bottom: 1rem;
    }

    .offering-card {
        padding: 1.5rem 1rem;
    }

    .offering-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.875rem;
    }

    .offering-icon i {
        font-size: 1.5rem;
    }

    .offering-card-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .offering-card-description {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .offering-badge {
        top: 10px;
        right: 10px;
        padding: 4px 10px;
        font-size: 0.65rem;
    }
}

@media (max-width: 479.98px) {
    .what-we-offering-section {
        padding: 40px 0;
    }

    .offering-card {
        padding: 1.25rem 0.875rem;
    }

    .offering-icon {
        width: 55px;
        height: 55px;
    }

    .offering-icon i {
        font-size: 1.4rem;
    }

    .offering-card-title {
        font-size: 0.95rem;
    }

    .offering-card-description {
        font-size: 0.75rem;
    }
}

/* ========== What We're Offering Section Styles End ========== */

/* ========== Our Team of Experts Section Styles Start ========== */
.team-experts-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.team-section-header {
    margin-bottom: 0;
}

.team-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.team-label-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.team-label .label-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #4993cf;
}

.team-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1c1c1c;
    margin: 0;
}

.team-section-title .highlight-blue {
    color: #4993cf;
}

.btn-team-all {
    background: #1e293b;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-team-all:hover {
    background: #4993cf;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(73, 147, 207, 0.3);
}

.btn-team-all i {
    font-size: 0.875rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.team-member-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    background: #ffffff;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.team-member-image {
    position: relative;
    width: 100%;
    padding-top: 125%; /* 4:5 aspect ratio */
    overflow: hidden;
    background: #f1f5f9;
}

.team-member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member-card:hover .team-member-image img {
    transform: scale(1.08);
}

.team-member-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 41, 59, 0.95) 0%, rgba(30, 41, 59, 0.85) 40%, rgba(30, 41, 59, 0.6) 70%, rgba(30, 41, 59, 0.3) 90%, transparent 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.team-member-info {
    flex: 1;
}

.team-member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.team-member-role {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

.team-social-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    position: absolute;
    right: 16px;
    top: -22px;
}


.team-social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 8px;
}

.team-member-card:hover .team-social-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.team-social-btn {
    background: #4993cf;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(73, 147, 207, 0.3);
}

.team-social-btn:hover {
    background: #3a7bb8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(73, 147, 207, 0.4);
}

.team-social-btn i {
    font-size: 0.875rem;
}

.team-share-btn {
    background: #4993cf;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(73, 147, 207, 0.3);
    position: relative;
    z-index: 2;
}

.team-share-btn:hover {
    background: #3a7bb8;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(73, 147, 207, 0.4);
}

.team-share-btn i {
    font-size: 1rem;
}

/* Team Carousel Styles */
.team-carousel-wrapper {
    position: relative;
    padding: 0;
}

.team-carousel-wrapper .carousel-inner {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.team-carousel-wrapper .carousel-inner.dragging {
    cursor: grabbing !important;
}

.team-carousel-wrapper .carousel-inner:not(.dragging) {
    cursor: grab;
}

.team-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 3rem;
    position: relative;
}

.team-carousel-controls .carousel-control-prev,
.team-carousel-controls .carousel-control-next {
    display: none;
}

.carousel-control-prev,
.carousel-control-next {
    display: none;
}

.carousel-indicators-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex: 1;
}

#teamCarousel .owl-dots,
.team-carousel-controls .owl-dots {
    position: static !important;
    margin: 30px 0 0 !important;
    display: flex !important;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100% !important;
}

#teamCarousel .owl-dot,
.team-carousel-controls .owl-dot {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: rgba(73, 147, 207, 0.35) !important;
    border: none !important;
    opacity: 1 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer;
    flex-shrink: 0;
}

#teamCarousel .owl-dot:hover,
.team-carousel-controls .owl-dot:hover {
    background: rgba(73, 147, 207, 0.7) !important;
    transform: scale(1.2);
}

#teamCarousel .owl-dot.active,
.team-carousel-controls .owl-dot.active {
    background: #4993cf !important;
    width: 36px !important;
    height: 10px !important;
    border-radius: 10px !important;
    transform: scale(1);
    opacity: 1 !important;
}

/* Remove default Owl Theme span styling */
#teamCarousel .owl-dot span,
.team-carousel-controls .owl-dot span {
    display: none !important;
}

/* Responsive Styles for Team Section */
@media (max-width: 1199.98px) {
    .team-experts-section {
        padding: 80px 0;
    }
}

@media (max-width: 991.98px) {
    .team-experts-section {
        padding: 60px 0;
    }

    .team-section-title {
        font-size: 2rem;
    }

    .btn-team-all {
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .team-experts-section {
        padding: 50px 0;
    }

    .team-section-title {
        font-size: 1.75rem;
    }

    .team-member-name {
        font-size: 1.25rem;
    }

    .team-member-role {
        font-size: 0.9rem;
    }

    .team-member-overlay {
        padding: 1.5rem 1.25rem 1.25rem;
    }

    .team-social-btn {
        width: 40px;
        height: 40px;
    }

    .team-social-btn i {
        font-size: 0.8rem;
    }

    .team-share-btn {
        width: 40px;
        height: 40px;
    }

    .team-share-btn i {
        font-size: 0.9rem;
    }

    .team-carousel-controls {
        margin-top: 2rem;
        gap: 15px;
    }

    #teamCarousel .carousel-indicators,
    .team-carousel-controls .carousel-indicators {
        gap: 10px !important;
        display: flex !important;
    }

    #teamCarousel .carousel-indicators button,
    .team-carousel-controls .carousel-indicators button {
        width: 8px !important;
        height: 8px !important;
        opacity: 1 !important;
        display: block !important;
        visibility: visible !important;
    }

    #teamCarousel .carousel-indicators button.active,
    .team-carousel-controls .carousel-indicators button.active {
        width: 32px !important;
        height: 8px !important;
        opacity: 1 !important;
    }
}

@media (max-width: 575.98px) {
    .team-member-name {
        font-size: 1.15rem;
    }

    .team-member-role {
        font-size: 0.875rem;
    }

    .team-member-overlay {
        padding: 1.25rem 1rem 1rem;
    }
}

/* ========== Our Team of Experts Section Styles End ========== */

/* ========== About Page Styles End ========== */

/* ========== Web Designing Page Styles Start ========== */

/* Web Designing Hero Banner */
.web-design-hero-banner {
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    background-image: url('images/webdesignbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 80px;
}

.web-design-hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.75) 100%);
    z-index: 1;
}

.graphic-design-banner {
    background-image: url('images/graphic_design_vibrant_bg.png') !important;
}

.graphic-design-banner .profile-image-wrapper {
    border-radius: 24px !important;
    border: 6px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.6), 0 30px 60px -30px rgba(0, 0, 0, 0.7) !important;
    max-width: 600px !important;
}

.graphic-design-banner .profile-image {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    transition: transform 0.8s ease;
}

.graphic-design-banner .profile-image:hover {
    transform: scale(1.05);
}

.ecommerce-hero-banner {
    background-image: url('images/ecommerce_vibrant_bg.png') !important;
}

.ecommerce-hero-banner .profile-image-wrapper {
    border-radius: 24px !important;
    border: 6px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.6), 0 30px 60px -30px rgba(0, 0, 0, 0.7) !important;
    max-width: 600px !important;
}

.ecommerce-hero-banner .profile-image {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    transition: transform 0.8s ease;
}

.ecommerce-hero-banner .profile-image:hover {
    transform: scale(1.05);
}

.mobile-app-hero-banner {
    background: linear-gradient(rgba(10, 20, 50, 0.6), rgba(10, 20, 50, 0.6)), url('images/mobile_app_vibrant_pro_bg.png') !important;
    background-size: cover !important;
    background-position: center !important;
}

.mobile-app-hero-banner .profile-image-wrapper {
    border-radius: 24px !important;
    border: 6px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.6), 0 30px 60px -30px rgba(0, 0, 0, 0.7) !important;
    max-width: 600px !important;
}

.mobile-app-hero-banner .profile-image {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    transition: transform 0.8s ease;
}

.mobile-app-hero-banner .profile-image:hover {
    transform: scale(1.05);
}

.web-designing-hero-banner .profile-image-wrapper {
    border-radius: 24px !important;
    border: 6px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.6), 0 30px 60px -30px rgba(0, 0, 0, 0.7) !important;
    max-width: 600px !important;
}

.web-designing-hero-banner .profile-image {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    transition: transform 0.8s ease;
}

.web-designing-hero-banner .profile-image:hover {
    transform: scale(1.05);
}

/* Web Development Hero Banner */
.web-development-hero-banner {
    position: relative;
    padding: 120px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(5, 10, 20, 0.75), rgba(5, 10, 20, 0.85)), url('images/web_development_hero_bg_new.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* App Installation Hero Banner */
.app-install-hero-banner {
    position: relative;
    padding: 120px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65)), url('images/graphic_design_vibrant_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.app-install-hero-banner .profile-image-wrapper {
    border-radius: 24px !important;
    aspect-ratio: auto !important;
    max-width: 600px !important;
}

.app-install-hero-banner .profile-image {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}

.app-pricing-section {
    background-color: #f8f9fa;
}

.app-pricing-table th {
    font-weight: 600;
    border-bottom: 2px solid #e9ecef;
}

.app-pricing-table td, 
.app-pricing-info-table td {
    vertical-align: middle;
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
}

.app-pricing-table, 
.app-pricing-info-table {
    min-width: 900px;
}

@media (max-width: 768px) {
    .app-pricing-section .p-4 {
        padding: 1rem !important;
    }
}

.rounded-top-left { border-top-left-radius: 12px; }
.rounded-top-right { border-top-right-radius: 12px; }
.app-pricing-table .bg-dark {
    background-color: #1a1e23 !important;
    color: #fff;
}
.app-pricing-table .text-primary {
    color: #4a90e2 !important;
}




.web-development-hero-banner .profile-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    /* Glassmorphism Border */
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    transition: transform 0.5s ease;
}

.web-development-hero-banner .profile-image-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
}

.web-development-hero-banner .profile-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.web-development-hero-banner .profile-image-wrapper:hover .profile-image {
    transform: scale(1.1);
}


/* Animated Dots Background */
.web-design-hero-banner .container {
    position: relative;
    z-index: 2;
}

.web-design-hero-content {
    padding-right: 2rem;
}

.web-design-hero-title {
    font-weight: 900;
    line-height: 1.15;
    font-size: clamp(2rem, 4vw + 1rem, 2.5rem);
    color: #ffffff;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.web-design-hero-title .highlight-blue {
    color: #d4af37;
    display: inline-block;
    position: relative;
}

.web-design-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 100%;
    color: #e5e7eb;
    margin-bottom: 2rem;
}

.web-design-hero-btn {
    background: #ffffff;
    border: 2px solid #ffffff;
    color: #121212;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Redefined Online Presence styles */
.op-modern-hero {
    position: relative;
    padding: 140px 0 100px !important;
    height: 100vh !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    color: #ffffff;
    background-image: linear-gradient(135deg, rgba(8, 15, 40, 0.94) 0%, rgba(15, 25, 60, 0.9) 100%), url('images/online_presence_abstract_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: visible !important;
}

@media (max-width: 991.98px) {
    .op-modern-hero {
        padding: 100px 0 60px !important;
        height: auto !important;
        min-height: 100dvh !important;
        text-align: center;
    }
    .op-modern-hero .display-3 {
        font-size: 2.2rem;
    }
    .hero-image-container {
        margin-top: 3rem;
        padding-top: 25px; /* Room for floating */
    }
}


.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.3) 0%, rgba(79, 172, 254, 0) 70%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

.floating {
    z-index: 5;
    position: relative;
}

@media (min-width: 1200px) {
    .floating {
        animation: float 4s ease-in-out infinite;
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}


.op-modern-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    clip-path: ellipse(50% 40% at 50% 100%);
    z-index: 10;
}


.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.gradient-text-blue {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.op-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(79, 172, 254, 0.3);
}

.op-modern-table {
    border-collapse: separate;
    border-spacing: 0 12px;
}

.op-modern-table tr {
    transition: transform 0.3s ease;
}

.op-modern-table tr:hover {
    transform: scale(1.01);
}

.op-modern-table td {
    background: white;
    padding: 20px !important;
    border: none !important;
}

.op-modern-table td:first-child {
    border-radius: 12px 0 0 12px;
    font-weight: 700;
    color: #1a1e23;
}

.op-modern-table td:last-child {
    border-radius: 0 12px 12px 0;
}


.web-design-hero-btn:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #121212;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.web-design-hero-btn i {
    transition: transform 0.3s ease;
}

.web-design-hero-btn:hover i {
    transform: translateX(5px);
}

/* Profile Image Wrapper */
.web-design-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.profile-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid rgba(73, 147, 207, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.profile-image-wrapper:hover {
    transform: scale(1.05);
    border-color: rgba(73, 147, 207, 0.6);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Web Designing About Section */
.wd-about-section {
    padding: 100px 0 60px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.wd-about-image-col {
    padding: 0;
    display: flex;
    align-items: stretch;
}

.wd-about-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    padding: 4px;
    background: #4993cf;
    border-radius: 8px;
    display: flex;
    align-items: stretch;
    align-self: stretch;
}

.wd-about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    min-height: 100%;
}

.wd-about-content-col {
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
}

.wd-about-pattern-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    background-image: url('images/pattern-lines.png');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
    display: none;
}

.wd-about-pattern-top-right {
    top: 0;
    right: 0;
    background-position: top right;
}

.wd-about-pattern-top-left {
    top: 0;
    left: 0;
    background-position: top left;
    transform: rotate(180deg);
}

.wd-about-content-wrapper {
    padding: 0 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Show pattern on extra large screens only */
@media (min-width: 1200px) {
    .wd-about-pattern-decoration {
        display: block;
        width: 350px;
        height: 350px;
        opacity: 0.5;
    }
    
    .wd-about-pattern-top-right {
        right: 0;
    }
    
    .wd-about-pattern-top-left {
        left: 0;
    }
}

@media (min-width: 1400px) {
    .wd-about-pattern-decoration {
        width: 400px;
        height: 400px;
        opacity: 0.6;
    }
}

.wd-about-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(73, 147, 207, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4993cf;
    width: max-content;
}

.wd-about-label i {
    font-size: 0.65rem;
    color: #d4af37;
}

.wd-about-heading {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1c1c1c;
    margin-bottom: 1.5rem;
}

.wd-about-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 2.5rem;
}

.wd-about-features {
    margin-bottom: 2.5rem;
}

.wd-about-feature-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.wd-about-feature-card:hover {
    box-shadow: 0 4px 15px rgba(18, 18, 18, 0.1);
    border-color: rgba(18, 18, 18, 0.2);
}

.wd-about-feature-icons-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.wd-about-feature-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #121212;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    flex-shrink: 0;
}

.wd-about-feature-icon-active {
    border-color: #121212;
}

.wd-about-feature-icon-active i {
    font-size: 1.5rem;
    color: #d4af37;
}

.wd-about-feature-icon-faded {
    border-color: rgba(18, 18, 18, 0.3);
    opacity: 0.5;
}

.wd-about-feature-icon-faded i {
    font-size: 1.25rem;
    color: rgba(18, 18, 18, 0.5);
}

.wd-about-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.wd-about-feature-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

.wd-about-bottom-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.wd-about-cta {
    flex: 0 0 auto;
}

.wd-about-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #121212 0%, #2a2a2a 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
}

.wd-about-btn:hover {
    background: linear-gradient(90deg, #2a2a2a 0%, #121212 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(73, 147, 207, 0.3);
}

.wd-about-btn i {
    font-size: 0.7rem;
}

.wd-about-btn i {
    transition: transform 0.3s ease;
}

.wd-about-btn:hover i {
    transform: translateX(5px);
}

.wd-about-contact {
    flex: 1;
}

.wd-about-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wd-about-contact-icon-wrapper {
    width: 40px;
    height: 40px;
    border: 2px solid #121212;
    background: transparent;
    color: #4993cf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.wd-about-contact-icon-wrapper i {
    color: #d4af37;
}

.wd-about-contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wd-about-contact-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.wd-about-contact-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1c1c1c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wd-about-contact-number:hover {
    color: #121212;
}

/* Web Designing About Section Feature Cards */
.wd-about-feature-card-new {
    background: #ffffff;
    border: 2px dashed #d1d5db;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wd-about-feature-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(73, 147, 207, 0.02) 0%, rgba(73, 147, 207, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wd-about-feature-card-new:hover {
    border-color: #4993cf;
    box-shadow: 0 10px 30px rgba(73, 147, 207, 0.15);
    transform: translateY(-5px);
}

.wd-about-feature-card-new:hover::before {
    opacity: 1;
}

.wd-about-feature-card-active {
    border-color: #4993cf;
    border-style: dashed;
}

.wd-about-feature-icon-wrapper-new {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.wd-about-feature-icon-circle-new {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #4993cf;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(73, 147, 207, 0.3);
    transition: all 0.3s ease;
}

.wd-about-feature-card-new:hover .wd-about-feature-icon-circle-new {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(73, 147, 207, 0.4);
}

.wd-about-feature-icon-circle-new i {
    color: #ffffff;
    font-size: 1.8rem;
    position: absolute;
}

.wd-about-feature-icon-circle-new .fa-desktop {
    font-size: 1.5rem;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.wd-about-feature-icon-circle-new .fa-mobile-screen-button {
    font-size: 1rem;
    bottom: 15%;
    right: 20%;
    z-index: 2;
}

.wd-about-feature-icon-circle-new .fa-file-code {
    font-size: 1.8rem;
}

.wd-about-feature-icon-circle-new .fa-arrow-rotate-right {
    font-size: 1.8rem;
}

.wd-about-feature-title-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 1rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.wd-about-feature-title-green {
    color: #4993cf;
}

.wd-about-feature-text-new {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Responsive Styles for Web Designing About Feature Cards */
@media (max-width: 991.98px) {
    .wd-about-feature-card-new {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .wd-about-feature-icon-circle-new {
        width: 70px;
        height: 70px;
    }

    .wd-about-feature-icon-circle-new i {
        font-size: 1.5rem;
    }

    .wd-about-feature-icon-circle-new .fa-desktop {
        font-size: 1.3rem;
    }

    .wd-about-feature-icon-circle-new .fa-mobile-screen-button {
        font-size: 0.9rem;
    }

    .wd-about-feature-title-new {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .wd-about-feature-card-new {
        padding: 1.75rem 1.5rem;
    }

    .wd-about-feature-icon-circle-new {
        width: 60px;
        height: 60px;
    }

    .wd-about-feature-icon-circle-new i {
        font-size: 1.3rem;
    }

    .wd-about-feature-title-new {
        font-size: 1.2rem;
    }

    .wd-about-feature-text-new {
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .wd-about-feature-card-new {
        padding: 1.5rem 1.25rem;
    }
}

/* Responsive Styles for Web Designing About Section */
@media (max-width: 1199.98px) {
    .wd-about-pattern-decoration {
        display: none !important;
    }

    .wd-about-content-wrapper {
        padding: 0 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .wd-about-section {
        padding: 60px 0;
    }

    .wd-about-image-wrapper {
        min-height: 400px;
        margin-bottom: 2rem;
    }

    .wd-about-content-wrapper {
        padding: 0;
    }

    .wd-about-heading {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .wd-about-section {
        padding: 50px 0;
    }

    .wd-about-image-wrapper {
        min-height: 350px;
    }

    .wd-about-content-wrapper {
        padding: 0;
    }

    .wd-about-bottom-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .wd-about-contact {
        width: 100%;
    }

    .wd-about-contact-number {
        font-size: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .wd-about-section {
        padding: 40px 0;
    }

    .wd-about-image-wrapper {
        min-height: 300px;
    }

    .wd-about-content-wrapper {
        padding: 0;
    }

    .wd-about-heading {
        font-size: 1.75rem;
    }

    .wd-about-description {
        font-size: 1rem;
    }

    .wd-about-feature-icon {
        width: 45px;
        height: 45px;
    }

    .wd-about-feature-icon i {
        font-size: 1.25rem;
    }

    .wd-about-feature-title {
        font-size: 1rem;
    }
    
    .wd-about-feature-text {
        font-size: 0.85rem;
    }
    
    .wd-about-bottom-section {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .wd-about-contact-icon-wrapper {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .wd-about-contact-number {
        font-size: 1.1rem;
    }

    .wd-about-btn {
        font-size: 0.875rem;
        padding: 0.875rem 1.75rem;
    }

    .wd-about-contact-number {
        font-size: 1.1rem;
    }
}

/* Web Designing Services Section */
.wd-services-section {
    padding: 60px 0;
    background-color: #ffffff;
    background-image: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('images/web_dev_subtle_pattern.png');
    background-size: 400px;
    background-repeat: repeat;
    position: relative;
}

.wd-services-header {
    margin-bottom: 0;
}

.wd-services-label {
    font-family: 'Brush Script MT', 'Lucida Handwriting', cursive, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: #d4af37;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.wd-services-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1c1c1c;
    margin: 0;
}

.wd-services-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #64748b;
    margin: 0;
}

.wd-service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(15, 23, 42, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.wd-service-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(15, 23, 42, 0.15);
}

.wd-service-icon {
    width: 60px;
    height: 60px;
    border: 2px solid #1c1c1c;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: transparent;
    transition: all 0.3s ease;
}

.wd-service-card:hover .wd-service-icon {
    border-color: #121212;
    transform: scale(1.05);
}

.wd-service-icon i {
    font-size: 1.5rem;
    color: #1c1c1c;
    transition: color 0.3s ease;
}

.wd-service-card:hover .wd-service-icon i {
    color: #d4af37;
}

.wd-service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #1c1c1c;
    display: inline-block;
    width: auto;
    transition: all 0.3s ease;
}

.wd-service-card:hover .wd-service-card-title {
    border-bottom-color: #4993cf;
    color: #4993cf;
}

.wd-service-card-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.wd-service-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid #1c1c1c;
    background: transparent;
    color: #1c1c1c;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    width: auto;
    margin-top: auto;
}

.wd-service-btn:hover {
    background: #121212;
    border-color: #121212;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Service Cards Slider Styles */
.wd-services-slider-wrapper {
    position: relative;
}

.wd-carousel-control {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid #1c1c1c;
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wd-carousel-control:hover {
    background: #4993cf;
    border-color: #4993cf;
    opacity: 1;
}

.wd-carousel-control i {
    color: #1c1c1c;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.wd-carousel-control:hover i {
    color: #ffffff;
}

.wd-carousel-control-prev {
    left: -25px;
}

.wd-carousel-control-next {
    right: -25px;
}

.wd-carousel-indicators {
    position: relative;
    margin-top: 2rem;
    margin-bottom: 0;
    bottom: auto;
    justify-content: center;
}

.wd-carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cbd5e1;
    border: none;
    margin-right: 8px;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    z-index: 10;
    position: relative;
}

.wd-carousel-indicators button.active {
    background-color: #4993cf;
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 767.98px) {
    .wd-carousel-indicators {
        margin-top: 1.5rem;
    }
    
    .wd-carousel-indicators button {
        width: 10px;
        height: 10px;
        margin-right: 6px;
    }
    
    .wd-carousel-indicators button.active {
        width: 24px;
    }
}

/* Owl Carousel Styles for Services Section */
#wdServicesCarousel.owl-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#wdServicesCarousel.owl-carousel .owl-stage-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
}

#wdServicesCarousel.owl-carousel .owl-stage {
    position: relative;
    display: flex;
    align-items: stretch;
}

#wdServicesCarousel .owl-item {
    padding: 0 10px;
    display: flex;
    align-items: stretch;
}

#wdServicesCarousel .owl-item .item {
    width: 100%;
    display: flex;
    align-items: stretch;
}

/* Ensure only one set of dots appears - hide all duplicates */
.wd-services-slider-wrapper .owl-dots {
    position: relative;
}

.wd-services-slider-wrapper .owl-dots ~ .owl-dots {
    display: none !important;
}

/* Hide any dots outside the carousel */
.wd-services-slider-wrapper > .owl-dots:not(.owl-carousel .owl-dots) {
    display: none !important;
}

#wdServicesCarousel .owl-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 8px;
    position: relative;
    z-index: 10;
}

#wdServicesCarousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cbd5e1;
    border: none;
    margin: 0;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    position: relative;
}

/* Hide the span inside owl-dot - in all states */
#wdServicesCarousel .owl-dots .owl-dot span,
#wdServicesCarousel .owl-dots .owl-dot.active span,
#wdServicesCarousel .owl-dots .owl-dot:hover span {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
}

#wdServicesCarousel .owl-dots .owl-dot.active {
    background-color: #121212;
    width: 30px;
    border-radius: 6px;
}

#wdServicesCarousel .owl-dots .owl-dot:hover {
    background-color: #2a2a2a;
    opacity: 0.8;
}

/* Hide Owl Carousel Navigation Arrows */
#wdServicesCarousel .owl-nav {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    #wdServicesCarousel .owl-dots {
        margin-top: 1.5rem;
        gap: 6px;
    }
    
    #wdServicesCarousel .owl-dots .owl-dot {
        width: 10px;
        height: 10px;
    }
    
    #wdServicesCarousel .owl-dots .owl-dot.active {
        width: 24px;
    }
    
    /* Ensure span is hidden on mobile too */
    #wdServicesCarousel .owl-dots .owl-dot span,
    #wdServicesCarousel .owl-dots .owl-dot.active span {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    #wdServicesCarousel .owl-item {
        padding: 0 5px;
    }
}


/* Why Choose Web Design Section */
.why-choose-web-design-section {
    padding: 100px 0;
    background: #f8fafc;
}

.why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: #1c1c1c;
    font-weight: 500;
}

.feature-item i {
    color: #4993cf;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.why-choose-image:hover img {
    transform: scale(1.02);
}

/* Web Design Process Section */
.web-design-process-section {
    padding: 100px 0;
    background: radial-gradient(circle at top, #1f2933 0, #050816 45%, #020617 100%);
    position: relative;
    overflow: hidden;
}

.web-design-process-section::before,
.web-design-process-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 60%);
    filter: blur(2px);
    pointer-events: none;
}

.web-design-process-section::before {
    width: 280px;
    height: 280px;
    top: -60px;
    left: -40px;
}

.web-design-process-section::after {
    width: 320px;
    height: 320px;
    bottom: -80px;
    right: -20px;
}

.web-process-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #e5e7eb;
    margin-bottom: 0.75rem;
}

.web-design-process-section .section-title {
    color: #ffffff;
}

.web-design-process-section .section-subtitle {
    color: #9ca3af;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.process-step-card {
    position: relative;
    text-align: center;
    padding: 2.5rem 2rem 2.25rem;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    height: 100%;
    overflow: hidden;
}

.process-step-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.process-step-card:hover {
    transform: translateY(-10px) translateZ(0);
    border-color: #d4af37;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.75);
    background: rgba(15, 23, 42, 0.98);
}

.process-step-card:hover::after {
    opacity: 1;
}

.process-step-badge {
    position: absolute;
    top: 1.4rem;
    left: 1.5rem;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #e5e7eb;
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.55), rgba(15, 23, 42, 0.95));
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
}

.process-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0, #facc6b, #d97706);
    box-shadow: 0 18px 40px rgba(248, 181, 71, 0.45);
    color: #111827;
}

.process-step-icon i {
    font-size: 1.75rem;
}

.process-step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 0.75rem;
}

.process-step-description {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #d1d5db;
    margin: 0;
}

/* Web Designing Experience / Capabilities Section */
.wd-experience-section {
    padding: 100px 0;

    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.wd-experience-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.10) 0, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(37, 99, 235, 0.12) 0, transparent 55%);
    opacity: 0.7;
    pointer-events: none;
}

.wd-experience-section .container {
    position: relative;
    z-index: 1;
}

.wd-experience-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #1f2933;
    background: rgba(255, 255, 255, 0.9);
}

.wd-experience-title {
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
    font-size: clamp(2rem, 3vw + 1rem, 2.75rem);
    font-weight: 800;
    color: #0f172a;
}

.wd-experience-subtitle {
    margin: 0 auto;
    max-width: 760px;
    font-size: 0.98rem;
    line-height: 1.8;
    color: #4b5563;
}

.wd-experience-grid {
    margin-top: 1.5rem;
}

.wd-experience-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    overflow: visible;
}

.wd-experience-item:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

.wd-experience-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0, #facc6b, #d97706);
    color: #111827;
    box-shadow: 0 14px 30px rgba(248, 181, 71, 0.4);
}

.wd-experience-icon i {
    font-size: 1.35rem;
}

.wd-experience-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.wd-experience-item-text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991.98px) {
    .wd-experience-section {
        padding: 70px 0;
    }
}

@media (max-width: 767.98px) {
    .wd-experience-item {
        padding: 1.25rem 1.35rem;
    }

    .wd-experience-title {
        font-size: 1.85rem;
    }
}

/* ========== Web Development Technologies Section Styles Start ========== */
.webdev-technologies-section {
    padding: 100px 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.webdev-technologies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.webdev-technologies-section .container {
    position: relative;
    z-index: 1;
}

.webdev-tech-header {
    margin-bottom: 1.5rem;
}

.webdev-tech-label {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 6px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 1rem;
}

.webdev-tech-title {
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
    font-weight: 800;
    line-height: 1.3;
    color: #1e293b;
    margin: 0;
}

.webdev-tech-description {
    margin-bottom: 2rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.webdev-tech-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 1rem;
}

.webdev-tech-text:last-child {
    margin-bottom: 0;
}

.webdev-tech-highlight {
    color: #f97316;
    font-weight: 700;
}



.webdev-tech-grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.webdev-tech-item {
    flex: 0 0 calc(16.666% - 1.5rem);
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    padding: 0;
}

.webdev-tech-logo-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    padding: 1.5rem 1rem;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.3s ease;
    min-height: 95px;
    position: relative;
    overflow: hidden;
}

.webdev-tech-logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.webdev-tech-item:hover .webdev-tech-logo-container {
    border-color: #d4af37;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.webdev-tech-item:hover .webdev-tech-logo-container::before {
    opacity: 1;
}

.webdev-tech-logo-container {
    position: relative;
}

.webdev-tech-logo-main,
.webdev-tech-logo-hover {
    width: 100px;
    height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.webdev-tech-logo-hover {
    opacity: 1;
    z-index: 2;
}

.webdev-tech-logo-main {
    opacity: 0;
    z-index: 1;
}

.webdev-tech-logo-single {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1 !important;
    z-index: 2;
}

.webdev-tech-item:hover .webdev-tech-logo-hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.webdev-tech-item:hover .webdev-tech-logo-main {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
}

.webdev-tech-item:hover .webdev-tech-logo-single {
    transform: translate(-50%, -50%) scale(1.1);
}

.webdev-tech-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.webdev-tech-item:hover .webdev-tech-name {
    color: #d4af37;
}

/* Responsive Styles for Technologies Section */
@media (max-width: 1399.98px) {
    .webdev-tech-grid-container {
        max-width: 1100px;
    }
}

@media (max-width: 1199.98px) {
    .webdev-technologies-section .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .webdev-tech-grid-container {
        gap: 1.75rem 1.25rem;
        max-width: 1000px;
    }
    
    .webdev-tech-item {
        flex: 0 0 calc(20% - 1.25rem);
    }
    
    .webdev-tech-logo-main,
    .webdev-tech-logo-hover {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 991.98px) {
    .webdev-technologies-section {
        padding: 70px 0;
    }
    
    .webdev-technologies-section .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    .webdev-tech-description {
        margin-bottom: 1.75rem;
        padding: 0 0.5rem;
    }
    
    .webdev-tech-grid-container {
        gap: 1.5rem 1.25rem;
    }
    
    .webdev-tech-item {
        flex: 0 0 calc(25% - 1.25rem);
    }
    
    .webdev-tech-logo-container {
        min-height: 95px;
        padding: 1.25rem 0.875rem;
        margin-bottom: 0.65rem;
    }
    
    .webdev-tech-logo-main,
    .webdev-tech-logo-hover {
        width: 85px;
        height: 85px;
    }
    
    .webdev-tech-name {
        font-size: 0.75rem;
    }
}

@media (max-width: 767.98px) {
    .webdev-technologies-section {
        padding: 70px 0;
    }
    
    .webdev-technologies-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .webdev-tech-header {
        margin-bottom: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .webdev-tech-label {
        font-size: 0.65rem;
        padding: 0.3rem 0.875rem;
    }
    
    .webdev-tech-description {
        margin-bottom: 1.5rem;
        padding: 0 0.75rem;
    }
    
    .webdev-tech-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .webdev-tech-grid-container {
        gap: 1.5rem 1rem;
    }
    
    .webdev-tech-item {
        flex: 0 0 calc(33.33% - 1rem);
    }
    
    .webdev-tech-logo-container {
        min-height: 125px;
        padding: 1.25rem 0.875rem;
        margin-bottom: 0.6rem;
    }
    
    .webdev-tech-logo-main,
    .webdev-tech-logo-hover {
        width: 75px;
        height: 75px;
    }
    
    .webdev-tech-name {
        font-size: 0.7rem;
    }
}

@media (max-width: 575.98px) {
    .webdev-technologies-section {
        padding: 70px 0;
    }
    
    .webdev-technologies-section .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .webdev-tech-header {
        padding: 0 0.25rem;
    }
    
    .webdev-tech-title {
        font-size: clamp(1.1rem, 4vw + 0.5rem, 1.35rem);
        line-height: 1.4;
    }
    
    .webdev-tech-description {
        padding: 0 0.5rem;
        margin-bottom: 1.25rem;
    }
    
    .webdev-tech-text {
        font-size: 0.875rem;
        line-height: 1.65;
    }
    
    .webdev-tech-grid-container {
        gap: 1.25rem 0.875rem;
    }
    
    .webdev-tech-item {
        flex: 0 0 calc(50% - 0.875rem);
    }
    
    .webdev-tech-logo-container {
        min-height: 90px;
        padding: 1rem 0.75rem;
        border-radius: 12px;
        margin-bottom: 0.5rem;
    }
    
    .webdev-tech-logo-main,
    .webdev-tech-logo-hover {
        width: 70px;
        height: 70px;
    }
    
    .webdev-tech-name {
        font-size: 0.65rem;
        letter-spacing: 0.08em;
    }
}

@media (max-width: 375px) {
    .webdev-technologies-section {
        padding: 30px 0;
    }
    
    .webdev-tech-grid-container {
        gap: 1rem 0.75rem;
    }
    
    .webdev-tech-logo-container {
        min-height: 110px;
        padding: 0.875rem 0.625rem;
    }
    
    .webdev-tech-logo-main,
    .webdev-tech-logo-hover {
        width: 65px;
        height: 65px;
    }
    
    .webdev-tech-name {
        font-size: 0.6rem;
    }
}
/* ========== Web Development Technologies Section Styles End ========== */

/* Responsive Styles for Web Designing Page */
@media (max-width: 991.98px) {
    .web-design-hero-banner {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .web-design-hero-content {
        padding-right: 0;
        text-align: center;
    }

    .web-design-hero-image {
        padding: 1rem;
    }

    .profile-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .wd-services-section,
    .why-choose-web-design-section,
    .web-design-process-section {
        padding: 60px 0;
    }
    
    .wd-services-title {
        font-size: 2rem;
    }
    
    .wd-services-description {
        font-size: 1rem;
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .web-design-hero-banner {
        padding: 80px 0 40px;
    }

    .web-design-hero-title {
        font-size: 2rem;
    }

    .profile-image-wrapper {
        max-width: 300px;
        border-width: 6px;
    }

    .web-design-service-card {
        padding: 2rem;
    }

    .wd-service-icon {
        width: 50px;
        height: 50px;
    }

    .wd-service-icon i {
        font-size: 1.25rem;
    }
    
    .wd-service-card {
        padding: 1.5rem;
    }
    
    .wd-service-card-title {
        font-size: 1.1rem;
    }
    
    .wd-service-card-description {
        font-size: 0.9rem;
    }
    
    .wd-service-btn {
        font-size: 0.85rem;
        padding: 0.625rem 1.25rem;
    }

    .process-step-number {
        font-size: 2.5rem;
    }

    .process-step-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .web-design-hero-banner {
        padding: 60px 0 30px;
    }

    .web-design-hero-title {
        font-size: 1.75rem;
    }

    .web-design-hero-subtitle {
        font-size: 1rem;
    }

    .profile-image-wrapper {
        max-width: 250px;
        border-width: 4px;
    }

    .web-design-service-card {
        padding: 1.5rem;
    }

    .service-card-title {
        font-size: 1.25rem;
    }

    .process-step-card {
        padding: 1.5rem;
    }
}

/* ========== Web Designing Page Styles End ========== */

/* ========== CTA Cards Section Styles Start ========== */
.cta-cards-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.cta-cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(15, 23, 42, 0.1) 50%, transparent 100%);
}

.cta-card {
    border-radius: 24px;
    padding: 70px 60px;
    min-height: 480px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    backdrop-filter: blur(10px);
}

.cta-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.cta-card:hover::after {
    opacity: 1;
}

.cta-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.cta-card-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.8) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.8) 2px, transparent 2px),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 40px 40px;
    background-position: 0 0, 30px 30px, 15px 15px;
}

.cta-card-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.cta-card-decoration.cta-decoration-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.cta-card-decoration.cta-decoration-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: -75px;
    filter: blur(30px);
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -20px) scale(1.1);
    }
}

.cta-card-primary {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: #ffffff;
}

.cta-card-primary .cta-card-decoration {
    background: rgba(96, 165, 250, 0.2);
}

.cta-card-secondary {
    background: linear-gradient(135deg, #c2410c 0%, #f97316 50%, #fb923c 100%);
    color: #ffffff;
}

.cta-card-secondary .cta-card-decoration {
    background: rgba(251, 146, 60, 0.2);
}

.cta-card-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
}

.cta-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.cta-card:hover .cta-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-card-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.cta-card-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-card-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.92);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.cta-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #0f172a;
    padding: 18px 45px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.cta-card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.cta-card-btn:hover::before {
    left: 100%;
}

.cta-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), 0 0 0 4px rgba(255, 255, 255, 0.3);
    color: #0f172a;
}

.cta-card-btn:active {
    transform: translateY(0);
}

.cta-card-btn i {
    transition: transform 0.3s ease;
}

.cta-card-btn:hover i {
    transform: translateX(4px);
}

.cta-btn-primary {
    background: #ffffff;
    color: #1e40af;
}

.cta-btn-primary:hover {
    background: #f8fafc;
    color: #1e3a8a;
}

.cta-btn-secondary {
    background: #ffffff;
    color: #c2410c;
}

.cta-btn-secondary:hover {
    background: #f8fafc;
    color: #9a3412;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .cta-cards-section {
        padding: 80px 0;
    }

    .cta-card {
        padding: 60px 50px;
        min-height: 420px;
        margin-bottom: 30px;
    }

    .cta-card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }

    .cta-card-icon i {
        font-size: 2.2rem;
    }

    .cta-card-title {
        font-size: 2.25rem;
        margin-bottom: 20px;
    }

    .cta-card-description {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .cta-card-btn {
        padding: 16px 40px;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .cta-cards-section {
        padding: 60px 0;
    }

    .cta-card {
        padding: 50px 40px;
        min-height: 380px;
        border-radius: 20px;
    }

    .cta-card-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 22px;
    }

    .cta-card-icon i {
        font-size: 2rem;
    }

    .cta-card-title {
        font-size: 1.9rem;
        margin-bottom: 18px;
    }

    .cta-card-description {
        font-size: 1rem;
        margin-bottom: 32px;
        line-height: 1.7;
    }

    .cta-card-btn {
        padding: 15px 35px;
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .cta-cards-section {
        padding: 50px 0;
    }

    .cta-card {
        padding: 40px 30px;
        min-height: 360px;
        border-radius: 18px;
    }

    .cta-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
        border-radius: 16px;
    }

    .cta-card-icon i {
        font-size: 1.8rem;
    }

    .cta-card-title {
        font-size: 1.65rem;
        margin-bottom: 16px;
    }

    .cta-card-description {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    .cta-card-btn {
        padding: 14px 32px;
        font-size: 0.9rem;
        letter-spacing: 0.6px;
}
}
/* ========== CTA Cards Section Styles End ========== */

/* ========== Mobile App Development Styles Start ========== */

/* Hero Banner */
.mad-hero-banner {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #e6f3ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.mad-hero-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(73, 147, 207, 0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.mad-hero-content {
    position: relative;
    z-index: 1;
}

.mad-welcome-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(73, 147, 207, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(73, 147, 207, 0.2);
}

.mad-welcome-label {
    color: #4993cf;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mad-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1e293b;
}

.mad-highlight {
    color: #4993cf;
    position: relative;
    display: inline-block;
}

.mad-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(73, 147, 207, 0.2);
    z-index: -1;
    transform: skewX(-15deg);
}

.mad-hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
}

.mad-hero-btn {
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    background-color: #4993cf;
    border-color: #4993cf;
    box-shadow: 0 4px 14px rgba(73, 147, 207, 0.4);
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.mad-hero-btn:hover {
    background-color: #0ea5e9;
    border-color: #0ea5e9;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(73, 147, 207, 0.5);
    color: white;
}

.mad-hero-image {
    position: relative;
    z-index: 1;
}

.mad-profile-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 8px solid white;
}

.mad-profile-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mad-profile-image-wrapper:hover .mad-profile-image {
    transform: scale(1.05);
}

/* About Section */
.mad-about-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.mad-about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

@media (min-width: 992px) {
    .mad-about-image-wrapper {
        position: sticky;
        top: 100px;
        z-index: 10;
    }
}

.mad-about-image {
    width: 100%;
    display: block;
}

.mad-about-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4993cf;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.mad-about-heading {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.mad-about-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 2.5rem;
}

.mad-feature-card {
    background: #f8fafc;
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid #4993cf;
    height: 100%;
    transition: all 0.3s ease;
}

.mad-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.mad-feature-icon {
    font-size: 2rem;
    color: #4993cf;
    margin-bottom: 1rem;
}

.mad-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.mad-feature-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Services / Specialized Section */
.mad-services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.mad-services-label {
    display: inline-block;
    color: #4993cf;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.mad-services-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.mad-services-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 3rem;
}

.mad-service-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s;
    border-bottom: 4px solid transparent;
}

.mad-service-card:hover {
    box-shadow: 0 15px 30px rgba(73, 147, 207, 0.15);
    border-bottom-color: #4993cf;
}

.mad-service-icon {
    width: 60px;
    height: 60px;
    background: rgba(73, 147, 207, 0.1);
    color: #4993cf;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.mad-service-card:hover .mad-service-icon {
    background: #4993cf;
    color: #ffffff;
}

.mad-service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.mad-service-card-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Process Section */
.mad-process-section {
    padding: 100px 0;
    background-color: #ffffff;
}

@media (max-width: 991.98px) {
    .mad-about-section,
    .mad-services-section,
    .mad-process-section {
        padding: 70px 0;
    }
}

.mad-process-label {
    display: inline-block;
    color: #4993cf;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.mad-process-card {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.mad-process-badge {
    width: 50px;
    height: 50px;
    background: #4993cf;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 10px rgba(73, 147, 207, 0.3);
}

.mad-process-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.mad-process-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
}

/* Call to action */
.mad-cta-btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    background: transparent;
    border: 2px solid #4993cf;
    color: #4993cf;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.mad-cta-btn:hover {
    background: #4993cf;
    color: #ffffff;
}

/* Icons fix for new sections */
.webdev-tech-logo-container i {
    color: #4993cf;
    transition: all 0.3s ease;
}

.webdev-tech-item:hover .webdev-tech-logo-container i {
    transform: scale(1.1);
}

.wd-experience-item:hover .wd-experience-icon {
    background: #111827;
    color: #d4af37;
    transform: scale(1.1);
}

.wd-experience-item:hover .wd-experience-icon i {
    color: #d4af37 !important;
}

.benefit-modern-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.benefit-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
    border-color: #4993cf !important;
}

.benefit-icon-ring {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #f0f7ff;
    color: #4993cf;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-modern-card h4 {
    font-size: 1.25rem;
}

.benefit-modern-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.benefit-modern-card:hover .benefit-icon-ring {
    background: #4993cf;
    color: #ffffff;
}

.ring-info { background: #e0faff; color: #0dcaf0; }
.ring-success { background: #e7f9ed; color: #198754; }
.ring-warning { background: #fff8e6; color: #ffc107; }
.ring-danger { background: #feecef; color: #dc3545; }
.ring-purple { background: #f5f0ff; color: #6f42c1; }

.benefit-modern-card:hover .ring-info { background: #0dcaf0; color: #fff; }
.benefit-modern-card:hover .ring-success { background: #198754; color: #fff; }
.benefit-modern-card:hover .ring-warning { background: #ffc107; color: #fff; }
.benefit-modern-card:hover .ring-danger { background: #dc3545; color: #fff; }
.benefit-modern-card:hover .ring-purple { background: #6f42c1; color: #fff; }

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #4993cf, #0dcaf0);
    border-radius: 2px;
}
/* ========== Email Marketing Benefits Section Styles End ========== */
/* ========== Mobile App Development Styles End ========== */