/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Root Variables */
:root {
    --primary-color: #002448;
    --secondary-color: #002448;
    --accent-color: #0072BC;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --gradient-bg: linear-gradient(135deg, #002448 0%, #002448 100%);
    --shadow: 0 10px 30px rgba(43, 27, 105, 0.15);
    --border-radius: 15px;
    --transition: all 0.3s ease;
}
.text-primary{
    color: var(--primary-color) !important;
}
.bg-primary{
    background-color: var(--primary-color) !important;
}
.btn-primary{
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
}
.bg-sucess{
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
}
.bg-danger{
    background-color: var(--accent-color) !important;
    color: var(--white) !important;
}
.btn-warning, .bg-warning{
    background-color: var(--accent-color) !important;
    color: var(--white) !important;
}
a{
    color: var(--primary-color) !important;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
}

/* Navigation */
.navbar {
    /* background: linear-gradient(135deg, rgba(43, 27, 105, 0.95) 0%, rgba(74, 60, 184, 0.95) 100%); */
    /* background: var(--gradient-bg); */
    background: white;
    backdrop-filter: blur(10px);
    padding: .5rem 0;
    transition: var(--transition);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
}

.brand-logo {
    width: 120px;
    height: auto;
}
.navbar-toggler{
    background-color: rgba(0, 0, 0, 0.6);
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
    /* color: white; */
    color: black;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    background: var(--accent-color);
    border: none;
    border-radius: 25px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #e6a429;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 184, 48, 0.3);
}

.btn-secondary {
    background: var(--secondary-color);
    border: none;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: #e6a429;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 184, 48, 0.3);
}

/* Hero Section */
.hero-section {
    /* background: var(--gradient-bg); */
    padding: 0;
    position: relative;
    overflow: hidden;
    background: url('/img/Herobglatest-scaled.jpg') center/cover no-repeat;
}

.slider-container {
    padding: 190px 0;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .slider-container {
        padding: 90px 0 350px;
    }

    .hero-section {
        /* background: var(--gradient-bg); */
        padding: 0;
        position: relative;
        overflow: hidden;
        background: url('/img/Herobg@3x-1-scaled.jpg') center/cover no-repeat;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    .hero-section p {
        font-size: 18px;
    }
}

/* .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,133.3C672,139,768,181,864,186.7C960,192,1056,160,1152,138.7C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom repeat-x;
    pointer-events: none;
} */



@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.btn-warning {
    background: var(--primary-color);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    padding: 0.8rem 2rem;
    transition: var(--transition);
    color: white;
}

.btn-warning:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 184, 48, 0.4);
}

.btn-outline-light {
    border-radius: 25px;
    font-weight: 600;
    padding: 0.8rem 2rem;
    transition: var(--transition);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Brand Logos Marquee */
.brands-section {
    padding: 2rem 0;
    background: var(--light-bg);
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content img {
    height: 20px;
    width: auto;
    margin: 0 3rem;
    /* opacity: 0.6; */
    transition: var(--transition);
    border-radius: 0px;
}

.marquee-content img:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Who We Are Section */
.who-we-are {
    padding: 5rem 0;
    background: var(--white);
}

.industry-section {
    padding: 100px 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .industry-section {
        padding: 50px 0;
    }
}

.industry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: backgroundMove 20s ease-in-out infinite;
}

@keyframes backgroundMove {

    0%,
    100% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(-10px) translateY(-5px);
    }
}

.industry-content {
    position: relative;
    z-index: 2;
}

.industry-header {
    text-align: center;
    margin-bottom: 4rem;
}

.industry-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.industry-title .text-accent {
    color: var(--accent-color);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industry-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.industry-card {
    /* background: rgba(255, 255, 255, 0.1); */
    background: white;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.industry-card:hover::before {
    animation: shimmer 0.8s ease-in-out;
}

@keyframes shimmer {
    0% {
        opacity: 0;
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.industry-card:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.industry-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--accent-color);
    transition: all 0.4s ease;
    position: relative;
}

.industry-card:hover .industry-icon {
    transform: rotate(-5deg) scale(1.1);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(52, 211, 153, 0.2));
    border-color: #10b981;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.industry-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: black;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.industry-description {
    font-size: 0.95rem;
    color: black;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-description {
    color: black;
}

/* Stats Counter */
.industry-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 4rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .industry-title {
        font-size: 2.5rem;
    }

    .industry-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .industry-card {
        padding: 1rem 1rem;
    }

    .floating-element {
        display: none;
    }
}

/* Animation Delays */
.industry-card:nth-child(1) {
    animation-delay: 0.1s;
}

.industry-card:nth-child(2) {
    animation-delay: 0.2s;
}

.industry-card:nth-child(3) {
    animation-delay: 0.3s;
}

.industry-card:nth-child(4) {
    animation-delay: 0.4s;
}

.industry-card:nth-child(5) {
    animation-delay: 0.5s;
}

.industry-card:nth-child(6) {
    animation-delay: 0.6s;
}

.industry-card:nth-child(7) {
    animation-delay: 0.7s;
}

.industry-card:nth-child(8) {
    animation-delay: 0.8s;
}

.industry-card:nth-child(9) {
    animation-delay: 0.9s;
}

.industry-card:nth-child(10) {
    animation-delay: 1.0s;
}

.industry-card:nth-child(11) {
    animation-delay: 1.1s;
}

.industry-card:nth-child(12) {
    animation-delay: 1.2s;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Circle Stats */
/* .stats-circle {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 2rem auto;
    animation: fadeInUp 1.5s ease;
} */

/* .circle-container {
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    border-radius: 50%;
    width: 400px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 2rem;
    transition: transform 0.3s ease;
} */
.circle-container {
    background: url('/img/Graphic-Element-1.png') center/contain no-repeat;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* makes it a square */
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}



.circle-container:hover {
    transform: scale(1.05);
}

.stat-item1 {
    position: absolute;
    left: 74px;
    top: 110px;
}

.stat-item2 {
    position: absolute;
    left: 282px;
    top: 187px;
}

.stat-item3 {
    position: absolute;
    left: 65px;
    bottom: 145px;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.3rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 991px) {
    .circle-container {
        width: 330px;
        height: 320px;
        padding: 1.5rem;
    }

    .stat-item1 {
        position: absolute;
        left: 42px;
        top: 68px;
    }

    .stat-item2 {
        position: absolute;
        left: 163px;
        top: 119px;
    }

    .stat-item3 {
        position: absolute;
        left: 33px;
        bottom: 90px;
    }

    .stat-item h3 {
        font-size: 1rem;
    }

    .stat-item p {
        font-size: 0.8rem;
    }
}

@media (max-width: 767px) {
    .circle-container {
        width: 275px;
        height: 275px;
        padding: 1.5rem;
    }

    .stat-item1 {
        position: absolute;
        left: 37px;
        top: 70px;
    }

    .stat-item2 {
        position: absolute;
        left: 162px;
        top: 120px;
    }

    .stat-item3 {
        position: absolute;
        left: 33px;
        bottom: 88px;
    }

    .stat-item h3 {
        font-size: 1rem;
    }

    .stat-item p {
        font-size: 0.8rem;
    }
}

/* Features */
.features-list h5 {
    font-size: 1.3rem;
    color: #333;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #555;
    transition: color 0.2s ease;
}

.feature-item i {
    font-size: 1.3rem;
    color: #4e54c8;
    margin-right: 0.5rem;
}

.feature-item:hover {
    color: #000;
}

.features-list {
    border-style: solid;
    border-width: 0px 0px 0px 1px;
    border-color: #444657;
    margin: 0px 0px 0px 0px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 5px 0px 5px 20px;
}

/* Button */
.btn-primary {
    /* background: linear-gradient(to right, #4e54c8, #8f94fb); */
    background: var(--gradient-bg);
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 10px 20px rgba(78, 84, 200, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(to right, #8f94fb, #4e54c8);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Circle */
@media (max-width: 768px) {
    .circle-container {
        width: 280px;
        height: 280px;
        padding: 1.5rem;
    }

}


/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 60, 184, 0.1), transparent);
    transition: var(--transition);
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--secondary-color);
    background: var(--gradient-bg);
    color: var(--white);
}

.service-card.featured {
    background: var(--gradient-bg);
    color: var(--white);
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.service-card.featured .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.service-card:hover button {
    color: var(--white) !important;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.service-features {
    list-style: none;
    text-align: left;
    padding: 0;
}

.service-features li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: #f8f9fa;
    /* Light gray for contrast */
}

.choose-item {
    display: flex;
    align-items: flex-start;
    padding: 1.8rem;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.choose-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #f0f4ff, #ffffff);
}

.choose-icon {
    width: 70px;
    height: 70px;
    /* background: linear-gradient(135deg, #6c63ff, #836fff); */
    background: var(--gradient-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
    transition: background 0.3s ease;
}

.choose-item:hover .choose-icon {
    background: linear-gradient(135deg, #00A651, #00AEEF);
}

.choose-content h5 {
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
}

.choose-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.why-choose-us h2 {
    font-weight: 700;
    color: #2b2b2b;
}

.why-choose-us .lead {
    color: #5a5a5a;
    max-width: 800px;
    margin: auto;
}


/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .services-section {
        padding: 40px 0;
    }

    .why-choose-us {
        padding: 40px 0;
    }

    .portfolio-section {
        padding: 40px 0;
    }
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    z-index: -1;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    /* color: white; */
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    /* background: linear-gradient(45deg, #fff, #f0f0f0); */
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
    color: black !important;
}

.section-title p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: black;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
}

.portfolio-grid .portfolio-item {
    max-width: 650px;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.portfolio-item a {
    color: black;
    text-decoration: none;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-image i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-image i {
    transform: scale(1.1);
    color: white;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-buttons {
    display: flex;
    gap: 15px;
}

.overlay-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.overlay-btn:hover {
    background: white;
    color: #667eea;
    transform: scale(1.1);
}

.portfolio-content {
    padding: 15px;
}

.portfolio-category {
    /* color: rgba(255, 255, 255, 0.7); */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.portfolio-title {
    /* color: white; */
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.portfolio-description {
    /* color: rgba(255, 255, 255, 0.8); */
    line-height: 1.6;
    /* margin-bottom: 20px; */
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.8);
}


@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .filter-buttons {
        /* flex-direction: column; */
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
}

.testimonials-swiper {
    padding: 2rem 0;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.customer-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: var(--white);
    border: none;
    font-weight: 600;
    padding: 1.5rem;
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    background: var(--white);
}

/* Contact Section */
.contact-section {
    background: var(--gradient-bg);
    padding: 5rem 0;
}

.contact-form {
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
}

.contact-item i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(43, 27, 105, 0.25);
}

/* Footer */
.footer-section {
    background: var(--primary-color);
    padding: 3rem 0 1rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1));
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}


/* Career Styles */
.career-hero {
    background: var(--light-color);
}

.career-benefits ul li {
    margin-bottom: 0.5rem;
}

.job-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.job-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.job-header h4 {
    color: var(--text-dark);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.job-company {
    color: var(--text-muted);
    font-weight: 500;
}

.job-salary {
    text-align: right;
    color: var(--accent-color);
    font-weight: bold;
}

.job-requirements h6 {
    color: var(--text-dark);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.job-requirements ul {
    margin-bottom: 0;
}

.job-requirements ul li {
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}


.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color) !important;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section .container {
        padding: 2rem 0;
    }

    .circle-container {
        width: 300px;
        height: 300px;
    }


    .service-card {
        margin-bottom: 2rem;
    }

    .choose-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .choose-icon {
        margin: 0 0 1rem 0;
    }
}

@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .hero-section {
        text-align: center;
    }


    .service-card {
        padding: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .contact-section .row {
        flex-direction: column-reverse;
    }

    .contact-section .col-lg-6:first-child {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .btn-lg {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-section .d-flex {
        flex-direction: column;
        align-items: center;
    }

    .hero-section .btn {
        margin-bottom: 0px;
        width: 100%;
        max-width: 280px;
    }

    .marquee-content img {
        height: 20px;
        margin: 0 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .choose-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--gradient-bg);
}

.shadow-custom {
    box-shadow: var(--shadow);
}

.border-radius-custom {
    border-radius: var(--border-radius);
}

/* Print Styles */
@media print {

    .navbar,
    .contact-section,
    .footer-section {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .container {
        max-width: 100%;
    }
}

/* Additional Page Styles */

/* About Page Styles */
.about-hero-section {
    background: url('/img/about-us-bg.png') center/cover no-repeat;
    padding: 0;
    position: relative;
    overflow: hidden;
    padding: 190px 0;
}

.stats-section .stat-box {
    padding: 2rem 1rem;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .stats-section .stat-box {
        padding: 0rem 0;
    }
}

.stats-section .stat-box:hover {
    transform: translateY(-5px);
}

.mission-section {
    background: var(--white);
}

.mission-point {
    transition: var(--transition);
}

.mission-point:hover {
    transform: translateX(10px);
}

.mission-icon {
    font-size: 1.2rem;
}

.why-choose-about {
    background: var(--light-bg);
}

.choose-feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.choose-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hiring-section {
    background: var(--white);
}

.job-item {
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.job-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-section {
    background: var(--gradient-bg);
    padding: 5rem 0;
}

/* Team Page Styles */
.team-hero-section {
    background: url('/img/about-us-bg.png') center/cover no-repeat;
    padding: 0;
    position: relative;
    overflow: hidden;
    padding: 160px 0;
}

.contact-container-section {
    margin: 80px 0;
}

@media (max-width: 768px) {
    .team-hero-section {
        padding: 90px 0;
    }

    .contact-container-section {
        margin: 40px 0;
    }
}

.team-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.7;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.team-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    position: relative;
    group: hover;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    transform: translateY(-12px);
    border: 1px solid var(--primary-color);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.member-photo {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.member-photo img {
    width: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(0%);
    max-height: 320px;
    min-height: 320px;
}

.team-card:hover .member-photo img {
    transform: scale(1.08);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .member-overlay {
    opacity: 1;
}

.member-social-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-card:hover .member-social-overlay {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.social-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.member-details {
    padding: 30px 25px;
    text-align: center;
}

.member-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.team-card:hover .member-name {
    color: var(--primary-color);
}

.member-position {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-bio {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    opacity: 1;
    transform: translateY(10px);
    transition: all 0.4s ease;
    margin-top: 10px;
}

.team-card:hover .member-bio {
    opacity: 1;
    transform: translateY(0);
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
    opacity: 1;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.skill-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--primary-color);
}

/* Blog Page Styles */
.blog-hero-section {
    background: url('/img/about-us-bg.png') center/cover no-repeat;
    padding: 0;
    position: relative;
    overflow: hidden;
    padding: 160px 0;
}

.blog-posts-section {
    background: var(--light-bg);
}

.featured-post {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.post-content {
    padding: 2rem;
}

.post-meta .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.recent-post {
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 8px;
}

.recent-post:hover {
    background: var(--light-bg);
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.blog-card img {
    /* height: 200px; */
    max-height: 310px;
    min-height: 310px;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover img {
    transform: scale(1.05);
}

.newsletter-section {
    background: var(--gradient-bg);
    padding: 5rem 0;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 25px 0 0 25px;
    padding: 1rem 1.5rem;
}

.newsletter-form .btn {
    border-radius: 0 25px 25px 0;
    padding: 1rem 2rem;
}

/* Contact Page Styles */
.contact-hero-section {
    background: url('/img/about-us-bg.png') center/cover no-repeat;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.contact-section-title {
    position: relative;
    margin-bottom: 50px;
}

.contact-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    background: white;
    color: var(--secondary-color);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
    background: white;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;

}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.map-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="25" cy="75" r="3" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: rotate 30s infinite linear;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.section-title {
    position: relative;
    margin-bottom: 50px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
    }

    .contact-card {
        padding: 25px;
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Responsive Adjustments for Additional Pages */
@media (max-width: 768px) {

    .about-hero-section,
    .team-hero-section,
    .blog-hero-section,
    .contact-hero-section {
        text-align: center;
    }

    .team-hero-image {
        margin-top: 2rem;
    }

    .member-image {
        height: 200px;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .blog-sidebar {
        position: static;
        margin-top: 2rem;
    }

    .featured-post .post-content {
        padding: 1.5rem;
    }


    .choose-feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .contact-info-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form .form-control {
        border-radius: 25px;
        margin-bottom: 1rem;
    }

    .newsletter-form .btn {
        border-radius: 25px;
        width: 100%;
    }

    .job-item {
        flex-direction: column;
        text-align: center;
    }

    .job-item .badge {
        margin-top: 1rem;
    }
}









/* Service Details page */
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Service Hero Section */
.service-hero {
    /* background: linear-gradient(-45deg, #0072BC, #00AEEF, #00C4FF, #00D4FF); */
    background: url('/img/about-us-bg.png') center/cover no-repeat;
    background-size: 400% 400%;
    color: white;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    /* animation: gradientBG 15s ease infinite; */
    box-shadow: 0 10px 30px rgba(0, 114, 188, 0.3);
}

/* .service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 25%);
    z-index: 1;
    pointer-events: none;
} */

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    animation: float 6s ease-in-out infinite;
}

.floating-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.floating-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
    animation-direction: reverse;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2rem;
    }
}

.service-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.service-icon {
    width: 100px;
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(255, 255, 255, 0.2); */
    border-radius: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon i {
    transform: rotate(-45deg);
    font-size: 40px;
}

.service-icon:hover {
    transform: rotate(0deg) scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.service-icon i {
    font-size: 36px;
    color: white;
}

.service-content {
    padding: 80px 0;
}

.service-feature-card {
    background: linear-gradient(145deg, #ffffff, #f0f5ff);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px -10px rgba(0, 114, 188, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow);
}

.service-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px -10px rgba(0, 114, 188, 0.2);
    color: white;
}

.service-feature-card:hover::before {
    opacity: 1;
}

.service-feature-card:hover .service-feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.service-feature-card:hover h4,
.service-feature-card:hover p {
    color: white;
}

.service-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0, 114, 188, 0.15);
}

.service-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 10px solid white;
}

.service-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.15);
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 114, 188, 0.1), rgba(0, 174, 239, 0.3));
    z-index: 1;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-image:hover::before {
    opacity: 1;
}

.service-image img {
    width: 100%;
    /* height: auto; */
    max-height: 450px;
    min-height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

.service-image:hover img {
    transform: scale(1.05);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.benefit-item:hover::before {
    height: 100%;
}

.benefit-item:hover {
    transform: translateX(10px);
    background: var(--primary-color);
    color: white;
}

.benefit-item i {
    font-size: 20px;
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 3px;
    transition: var(--transition);
}

.benefit-item:hover i {
    color: white;
}

.cta-section {
    background: var(--gradient-bg);
    background-size: 400% 400%;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    animation: gradientBG 15s ease infinite;
    position: relative;
}

/* .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48cmVjdCB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==');
    opacity: 0.5;
    z-index: 1;
} */

.cta-content {
    position: relative;
    z-index: 1;
}