/* ===================================
   Stars Developer - Custom Styles
   Bootstrap 5.3 + Custom CSS
   =================================== */

/* ===================================
   1. ROOT VARIABLES & COLORS
   =================================== */
:root {
    --primary-color: #00BCD4;
    --primary-dark: #0097A7;
    --primary-light: #D8E7EF;
    --secondary-color: #0E1D34;
    --dark-bg: #0F1922;
    --text-dark: #1A2332;
    --text-gray: #344054;
    --linkedin-bg: #0077B5;
    --text-light: #E0E0E0;
    --banner-text: #98A2B3;
    --white: #FFFFFF;
    --light-bg: #FAFAFA;
    --border-color: #D8E7EF;
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --gradient-color: #0584A3;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Audiowide', sans-serif;
    
    /* Spacing */
    --section-padding: 50px 0 80px;
    --section-padding-mobile: 40px 0;
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ===================================
   2. BASE STYLES & TYPOGRAPHY
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

a {
    text-decoration: none;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: var(--section-padding);
}

/* ===================================
   3. BUTTONS
   =================================== */
.btn {
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    transition: var(--transition-base);
    border: none;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-dark {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.btn-dark:hover,
.btn-dark:focus {
    background-color: var(--dark-bg);
    border-color: var(--dark-bg);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-quote {
    padding: 10px 28px;
}

.btn-lg {
    padding: 14px 40px;
    font-size: 16px;
}

/* ===================================
   4. TOP BAR
   =================================== */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-link {
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.top-link:hover {
    color: var(--primary-color);
}

.top-link i {
    font-size: 14px;
}


.social-links a {
    color: var(--white);
    font-size: 16px;
    transition: var(--transition-fast);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ===================================
   5. NAVIGATION
   =================================== */
.navbar {
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.navbar.sticky-top {
    background-color: var(--white) !important;
}

.logo {
    height: 60px;
    width: auto;
}

.navbar-nav {
    gap: 5px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 6px;
    transition: var(--transition-fast);
    font-size: 15px;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-color);
    background-color: rgba(0, 188, 212, 0.05);
}

.nav-link.active {
    color: var(--primary-color);
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--primary-color)
}

/* ===================================
   6. HERO SECTION
   =================================== */
.hero-section {
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}


.hero-badge {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--gradient-color) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 50px;
    width: fit-content;
    position: relative;
}
.hero-badge:before {
    content: "";
    height: 50px;
    width: 50px;
    position: absolute;
    left: -40px;
    background-image: url("../images/sparkles.webp");
    background-size: contain;
    background-repeat: no-repeat;
    top: -30px;
}
.hero-content .btn {
    width: fit-content;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 50px;
    line-height: 1.2;
    font-family: var(--font-secondary);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--banner-text);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-image-grid img {
    width: 100%;
    object-fit: cover;
}

.stat-card {
    background-color: var(--primary-light);
    padding: 50px 15px;
    border-radius: 44px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-base);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-card-primary {
    background:  var(--linkedin-bg);
    color: var(--white);
    z-index: 9;
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 0;
    font-weight: 600;
}

.stat-card-primary .stat-text {
    color: var(--white);
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
}
/* ===================================
   7. SECTION HEADERS
   =================================== */
.section-badge {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    width: 100%;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
    position: relative;
}

.section-description {
    font-size: 1.05rem;
    color: var(--banner-text);
    line-height: 1.8;
}

/* ===================================
   8. ABOUT SECTION
   =================================== */
.about-section {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}
.about-section .about-images >div>div+div{
    background-image: url("../images/bg-dots.webp");
    background-repeat: no-repeat;
    background-position: bottom center;
}

.about-images img {
    border-radius: 130px 0 130px 130px;
    box-shadow: var(--shadow-md);
    width: 100%;
    object-fit: cover;
}

.contact-info-box {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}
.contact-info-box p {
    font-weight: bold;
}
.contact-info-box .whatsapp-link {
    color: var(--text-dark);
}
.contact-info-box .whatsapp-link:hover {
    color: var(--primary-color);
}
.contact-icon {
    font-size: 3rem;
    color: var(--success-color);
}

.signature {
    max-width: 120px;
    height: auto;
}

/* ===================================
   9. SERVICES SECTION
   =================================== */
.services-section {
    background-color: var(--white);
}

.service-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    padding: 35px 25px;
    border-radius: 60px 0 60px 60px;
    transition: var(--transition-base);
    margin-bottom: 30px;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-base);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}
.service-icon svg {
    height: 50px;
    width: 50px;
    color: var(--white);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0;
}
.services-heading-svg {
    max-width: 670px;
    width: 100%;
    height: auto;
    position: relative;
    top: 50px;
}
.space-top-conatiner {
    margin-top: 170px;
}
/* ===================================
   10. WORKING PROCESS SECTION
   =================================== */
.working-process-section {
    background-color: var(--light-bg);
}

.process-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: scaleY(0);
    transition: var(--transition-base);
}

.process-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.process-card:hover::before {
    transform: scaleY(1);
}

.process-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--gradient-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-secondary);
}

.process-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.process-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0;
}
.working-heading-svg {
    max-width: 620px;
    width: 100%;
    height: auto;
    position: relative;
    top: 40px;
}
/* ===================================
   11. PROJECTS SECTION
   =================================== */
.projects-preview-section,
.projects-section {
    background-color: var(--white);
}

.project-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.projects-heading-svg {
    max-width: 630px;
    width: 100%;
    position: relative;
    top: 80px;
}
/* Projects Page Specific */
.page-hero {
    background-color: var(--secondary-color);
    padding: 20px 0 80px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 60px 60px;
}
.hero-subtitle {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    width: 100%;
    display: inline-block;
    position: relative;
}
.banner-projects-svg {
    position: relative;
    top: 80px;
    max-width: 635px;
    width: 100%;
}

.page-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0;
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    background: #E8F7F8;
    max-width: fit-content;
    margin: 80px auto 3rem;
    padding: 10px 15px;
    border-radius: 50px;
}

.filter-btn {
    background-color: transparent;
    border: none;
    color: var(--text-dark);
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-base);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background:linear-gradient(180deg, var(--primary-color) 0%, var(--gradient-color) 100%);
    color: var(--white);
}

.project-card-detail {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-base);
    height: 100%;
}

.project-card-detail:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
}

.project-image-wrapper img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-base);
}
.apps .project-image-wrapper img {
    object-fit: contain;
}

.project-card-detail:hover .project-image-wrapper img {
    transform: scale(1.05);
}

.project-badge-corner {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.project-content {
    padding: 25px;
}

.project-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.project-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-category {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0;
}


/* ===================================
   12. REVIEWS SECTION
   =================================== */
.reviews-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}
.reviews-section .container {
    background-image: url("../images/reviews-bg.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
}
.review-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gradient-color) 100%);
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    height: 100%;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 188, 212, 0.3);
}

.quote-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    line-height: 1;
}

.quote-icon i {
    display: block;
}

.review-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
}

.reviewer-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.reviewer-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
}

.reviewer-position {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}
.reviews-heading-svg {
    max-width: 640px;
    width: 100%;
    height: auto;
    position: relative;
    top: 45px;
}

/* ===================================
   13. TEAM SECTION
   =================================== */
.team-section {
    background-color: var(--white);
}
.members-heading-svg {
    max-width: 725px;
    width: 100%;
    position: relative;
    top: 40px;
}
.team-card-large {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    padding: 30px;
    gap: 30px;
}

.team-card-large:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.team-card-large .team-image {
    width: 100%;
    object-fit: cover;
    max-width: 250px;
    border-radius: 24px;
}
.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.team-position {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

.team-card-small {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
    cursor: pointer;
}

.team-card-small:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.team-card-small:hover .team-overlay {
    opacity: 1;
}

.team-image-small {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* Team Overlay for Image Popup */
.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 188, 212, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.team-overlay i {
    font-size: 3rem;
    color: var(--white);
}


/* Modal Styling for Team Images */
.modal-content {
    border-radius: 15px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background-color: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);;
    color: var(--white);
    border-bottom: none;
    padding: 20px 25px;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body img {
    width: 100%;
    height: auto;
}

/* ===================================
   14. CAREER PAGE
   =================================== */
.section-jobs-svg {
    max-width: 840px;
    width: 100%;
    position: relative;
    top: 70px;
}
.banner-career-svg {
    position: relative;
    top: 50px;
    max-width: 525px;
    width: 100%;
}
.gallery-section {
    background-color: var(--white);
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-item.gallery-large {
    height: 100%;
}
.mobile-grid-gallery {
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
}
.jobs-section {
    background-color: var(--light-bg);
}

.job-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    padding: 30px;
    border-radius: 60px 0 60px 60px;
    transition: var(--transition-base);
    height: 100%;
}

.job-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.job-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.job-badge {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.job-badge-featured {
    background-color: var(--warning-color);
}

.job-section {
    margin: 20px 0;
}

.job-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.job-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

.job-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.job-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.job-detail-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* ===================================
   15. QUOTE SECTION
   =================================== */
.quote-section {
    background-color: var(--light-bg);
}

.quote-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 15px;
    transition: var(--transition-base);
}

.quote-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.15);
}

.quote-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ===================================
   16. FOOTER
   =================================== */
.footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    position: relative;
    border-radius: 60px 60px 0 0;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-link i {
    font-size: 1.1rem;
}

.footer-contact {
    padding: 30px 0;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid var(--banner-text);
}

.footer-social {
    display: flex;
    gap: 25px;
}

.footer-social a {
    color: var(--white);
    font-size: 20px;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}
.footer .brand-column {
    padding: 60px 30px 30px 10px;
    border-right: 1px solid var(--banner-text);
    position: relative;
}
.footer .location-column {
    padding: 60px 10px 10px 60px;
}
.footer-scroll-top {
    border: 1px solid #fff;
    color: #fff;
    position: absolute;
    right: -70px;
    transform: rotate(-90deg);
    top: 50%;
    background: #0e1d34;
    text-transform: uppercase;
}
.footer-scroll-top i {
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}
.footer-scroll-top:hover {
    border-color: #00a8bc;
    background: #00a8bc;
}
/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 1000;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
}
@media (min-width: 1200px) { 
 .container {
    max-width: 1440px;
    padding: 0 20px;
 }
}

/* ===================================
   17. ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===================================
   18. UTILITIES
   =================================== */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--secondary-color) !important;
    background-image: url("../images/hero-intro-bg.webp");
    background-repeat: no-repeat;
    background-position: bottom right;
}

.border-primary-custom {
    border-color: var(--primary-color) !important;
}
/* ===================================
   Custom
   =================================== */
.sd-client-icon {
    height: 50px;
    min-width: 50px;
    border: 2px solid var(--Colors-Background-bg-primary, rgba(255, 255, 255, 1));
    padding: 2px;
    background: var(--Colors-Background-bg-tertiary, rgba(242, 244, 247, 1));
}
.sd-client-icon img {
    height: 100%;
}
.sd-client-icon+span {
    margin-left: -20px;
}
.stat-card-primary .linkedin-icon {
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    background: #3392C4;
    border-radius: 50px;
}
.stat-primary-card-column {
    position: relative;
    margin-top: -80px;
}
.stat-primary-card-column:before {
    content: "";
    width: 100%;
    height: 76px;
    display: block;
    position: absolute;
    top: -20px;
    background: #ffffff;
    left: -10px;
    border-radius: 110px 0 0 0;
}
.stat-card-primary .btn {
    background: #3392c4;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    line-height: normal;
    padding: 12px;
    width: fit-content;
    margin: auto;
}
.section-heading-svg {
    margin-bottom: -20px;
    width: 100%;
    height: auto;
}
.experience-time {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--gradient-color) 100%);
    text-align: center;
    padding: 40px;
    border-radius: 130px 130px 130px 0;
    width: fit-content;
}
.experience-time h2 {
    font-size: 60px;
    color: var(--secondary-color);
    margin: 0;
}
.experience-time p {
    color: var(--white);
    font-weight: 700;
}

/* ===================================
   20. PRINT STYLES
   =================================== */
@media print {
    .top-bar,
    .navbar,
    .scroll-top,
    .quote-section,
    .footer {
        display: none !important;
    }
}

/* ===================================
   SLICK CAROUSEL CUSTOM STYLES
   =================================== */

/* Reviews Slider Container */
.reviews-slider {
    position: relative;
    padding: 0 50px;
}

.review-slide {
    padding: 0 15px;
}


/* Slick Dots */
.slick-dots li button:before {
    display: none;
}
.slick-dots li.slick-active button {
    background: var(--primary-color);
}
div .slick-dots li button {
    background: #EBEBEB;
    padding: 5px 3px;
    height: 8px;
    border-radius: 10px;
}
div .slick-track {
    padding: 10px 0 70px;
}
/* ===================================
   NEW TEAM SECTION STYLES
   =================================== */

/* Team Card - New Design */
.team-card-new {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 188, 212, 0.15);
}

/* Team Card Image Container */
.team-card-image {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    background: var(--light-bg);
}

.team-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-base);
}

.team-card-new:hover .team-card-image img {
    transform: scale(1.05);
}

/* Team Card Content */
.team-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
    line-height: 1.3;
}

.team-card-role {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.team-card-bio {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

/* Team Card Stats */
.team-card-stats {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 8px 16px;
    border-radius: 25px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.stat-item i {
    font-size: 1.1rem;
}

/* Small Team Cards (for carousel) */
.team-card-small {
    max-width: 100%;
}

.team-card-small .team-card-name {
    font-size: 1.25rem;
}

.team-card-small .team-card-bio {
    display: none; /* Hide bio in smaller cards */
}

.team-card-small .team-card-content {
    padding: 20px;
}

/* Team Members Slider Container */
.team-members-slider {
    position: relative;
    margin-top: 40px;
}

.team-slide {
    padding: 0 15px;
}

/* Slick Arrows for Team Slider */
.team-members-slider .slick-prev,
.team-members-slider .slick-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition-base);
}

.team-members-slider .slick-prev:hover,
.team-members-slider .slick-next:hover {
    background-color: var(--primary-dark);
}

.team-members-slider .slick-prev {
    left: -25px;
}

.team-members-slider .slick-next {
    right: -25px;
}

.team-members-slider .slick-prev:before,
.team-members-slider .slick-next:before {
    display: none;
}

.team-members-slider .slick-prev i,
.team-members-slider .slick-next i {
    color: var(--white);
    font-size: 1.5rem;
    line-height: 50px;
}

/* ===================================
   TEAM IMAGE MODAL STYLES
   =================================== */

/* Make team cards clickable */
.team-image-clickable {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Team card overlay effect */
.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 188, 212, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-image-clickable:hover .team-overlay {
    opacity: 1;
}

.team-overlay i {
    font-size: 3rem;
    color: var(--white);
    animation: zoomPulse 1.5s infinite;
}

@keyframes zoomPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Modal Styles */
#teamImageModal .modal-content {
    background-color: transparent;
    border: none;
}

#teamImageModal .modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 10px 10px 0 0;
}

#teamImageModal .modal-title {
    color: var(--white);
    font-weight: 600;
}

#teamImageModal .modal-body {
    background-color: var(--white);
    border-radius: 0 0 10px 10px;
    padding: 0;
}

#teamImageModal .modal-body img {
    border-radius: 0 0 10px 10px;
    max-height: 80vh;
    width: 100%;
    object-fit: contain;
}

/* Modal animation */
#teamImageModal .modal-dialog {
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Close button styling */
.btn-close-white {
    filter: brightness(0) invert(1);
}
.sticky-icons {
    display: flex;
    position: fixed;
    bottom: 30px;
    left: 25px;
    z-index: 100;
}
.sticky-icons img {
    max-width: 25px;
}
.sticky-icons a.whatsapp-icon {
    position: relative;
    display: flex;
    width: 45px;
    height: 45px;
    border: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0 0 rgb(0 211 102 / 70%);
    border-radius: 50%;
    background-color: #33CC66;
    cursor: pointer;
    -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(0.66,0,0,1);
    -ms-animation: pulse 1.25s infinite cubic-bezier(0.66,0,0,1);
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-size: 20px;
    color: #fff;
}
@-webkit-keyframes pulse {
    100% {
        box-shadow: 0 0 0 35px rgb(37 211 102 / 0%);
    }
}
@keyframes pulse {

    100% {
        box-shadow: 0 0 0 35px rgb(37 211 102 / 0%);
    }
}