/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .8s ease-out, visibility 0s linear .0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/
.fas {
    color: white;
}

/* Modern Design Variables - Keeping existing variables */
:root {
    --primary-color: #0f1c54;
    --secondary-color: #03092c;
    --accent-color: #ff4d5a;
    --accent-hover: #ff6471;
    --accent-secondary: #4b7bec;
    --text-light: #ffffff;
    --text-dark: #171c34;
    --text-muted: #94a3b8;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --gradient-primary: linear-gradient(135deg, #ff4d5a 0%, #ff6471 100%);
    --gradient-dark: linear-gradient(135deg, #0f1c54 0%, #03092c 100%);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.1);
    --transition-fast: 0.3s;
    --transition-medium: 0.5s;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    --font-primary: 'Inter', 'Segoe UI', sans-serif;

    /* New variables for the video popup */
    --overlay-bg: rgba(3, 9, 44, 0.95);
    --popup-bg: rgba(15, 28, 84, 0.9);
    --btn-active: #02061e;
    /* Dark navy for active button state */
}

/* All existing styles remain the same */

.our-service{
    color: var(--accent-color);
}

/* Update the .watchDemo styles to include active state */
.watchDemo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    color: var(--text-light);
    font-weight: 500;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.watchDemo .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--accent-color);
    border-radius: 50%;
    font-size: 0.75rem;
    transition: all var(--transition-fast);
}

.watchDemo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Active/clicked state for button */
.watchDemo-active,
.watchDemo:active {
    background-color: var(--btn-active);
    transform: translateY(1px);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(255, 77, 90, 0.2);
}

.watchDemo-active .icon,
.watchDemo:active .icon {
    background-color: var(--accent-hover);
    transform: scale(0.95);
}

/* Video Popup Styles */
.video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-bg);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

.video-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-popup-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    background-color: var(--popup-bg);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transform: scale(0.9);
    opacity: 0;
    transition: transform var(--transition-medium), opacity var(--transition-medium);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
}

.video-popup-container.visible {
    transform: scale(1);
    opacity: 1;
}

.video-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.video-popup-close:hover {
    background: var(--accent-hover);
    transform: rotate(90deg);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: calc(var(--border-radius-md) - 4px);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: calc(var(--border-radius-md) - 4px);
    border: 1px solid var(--card-border);
}

/* Responsive Adjustments for Video Popup */
@media (max-width: 768px) {
    .video-popup-container {
        width: 95%;
        padding: 1rem;
    }

    .video-popup-close {
        top: -10px;
        right: -10px;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--secondary-color);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
    margin-left: 20px;
}

.subtitle::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    width: 15px;
    height: 2px;
    background: var(--accent-color);
    transform: translateY(-50%);
}

.title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    background-image: linear-gradient(90deg, var(--text-light), #d1d5db);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 550px;
    margin-bottom: 1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.exploreService {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-md);
    color: var(--text-light);
    font-weight: 600;
    transition: all var(--transition-fast);
    box-shadow: 0 10px 20px rgba(255, 77, 90, 0.25);
}

.exploreService:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 77, 90, 0.35);
}

.watchDemo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    color: var(--text-light);
    font-weight: 500;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.watchDemo .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--accent-color);
    border-radius: 50%;
    font-size: 0.75rem;
}

.watchDemo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    color: white;
}

/* Hero Image Styles */
.hero-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-graphic {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(15, 28, 84, 0.6), rgba(3, 9, 44, 0.6));
    box-shadow: 0 0 60px rgba(75, 123, 236, 0.3);
    animation: pulse 4s ease-in-out infinite alternate;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(75, 123, 236, 0.2), rgba(3, 9, 44, 0.2));
    box-shadow: 0 0 60px rgba(75, 123, 236, 0.1);
    animation: pulse 5s ease-in-out infinite alternate-reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 77, 90, 0.2), rgba(3, 9, 44, 0.2));
    box-shadow: 0 0 60px rgba(255, 77, 90, 0.2);
    animation: pulse 6s ease-in-out infinite alternate;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-soft);
}

.card-1 {
    top: 20%;
    left: 0;
    transform: translateX(-30%);
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    bottom: 20%;
    right: 0;
    transform: translateX(30%);
    animation: float 5s ease-in-out infinite reverse;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    border-radius: var(--border-radius-sm);
    font-size: 1.2rem;
}

.card-text {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hero Background Elements */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.circle-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    filter: blur(60px);
}

.circle-2 {
    top: 50%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-secondary), var(--primary-color));
    filter: blur(80px);
}

.circle-3 {
    bottom: 10%;
    left: 20%;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    filter: blur(60px);
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.p1 {
    top: 20%;
    left: 10%;
    width: 10px;
    height: 10px;
    animation: particle-float 15s linear infinite;
}

.p2 {
    top: 60%;
    left: 20%;
    width: 15px;
    height: 15px;
    animation: particle-float 20s linear infinite 2s;
}

.p3 {
    top: 30%;
    right: 20%;
    width: 8px;
    height: 8px;
    animation: particle-float 18s linear infinite 1s;
}

.p4 {
    bottom: 30%;
    right: 10%;
    width: 12px;
    height: 12px;
    animation: particle-float 22s linear infinite 3s;
}

.p5 {
    bottom: 10%;
    left: 30%;
    width: 7px;
    height: 7px;
    animation: particle-float 25s linear infinite 4s;
}

.hero-slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    transition: all var(--transition-fast);
}

.nav-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 77, 90, 0.5);
}

/* Text right layout - applied when the class is added */
.hero-content.text-right-layout {
    grid-template-areas: "image text";
}

.hero-content:not(.text-right-layout) {
    grid-template-areas: "text image";
}

/* Apply grid areas to children */
.hero-content .hero-text {
    grid-area: text;
}

.hero-content .hero-image {
    grid-area: image;
}

/* Add transition animations */
.hero-content {
    transition: opacity 0.5s ease;
}

.hero-content.text-right-layout .hero-text,
.hero-content.text-right-layout .hero-image {
    animation: fadeInLayout 0.7s ease forwards;
}

@keyframes fadeInLayout {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Adjust floating cards for right text layout */
.hero-content.text-right-layout .card-1 {
    left: auto;
    right: 0;
    transform: translateX(30%);
}

.hero-content.text-right-layout .card-2 {
    right: auto;
    left: 0;
    transform: translateX(-30%);
}

@media (max-width: 768px) {
    .card-text{
        font-size: 10px !important;
    }
}

/* Compact Stats Section */
.stats {
    position: relative;
    padding: 1.5rem 0;
    background: var(--primary-color);
    overflow: hidden;
}

.stats-header {
    text-align: center;
    margin-bottom: 0.75rem;
    position: relative;
}

.stats-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.stats-line {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 3px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 1rem;
    text-align: center;
    transition: transform var(--transition-medium);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.stat-visual {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 0.75rem;
}

.stat-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(255, 77, 90, 0.3);
}

.progress-ring-circle {
    stroke: var(--accent-color);
    stroke-opacity: 0.2;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease;
}

.stat-content {
    text-align: left;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.stat-value::after {
    content: '+';
    font-size: 1rem;
    position: absolute;
    top: 0;
    right: -12px;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stats-title {
        font-size: 1.5rem;
    }

    .stat-card {
        padding: 0.75rem;
    }
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes particle-float {
    0% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-50px) translateX(30px);
    }

    50% {
        transform: translateY(-100px) translateX(-30px);
    }

    75% {
        transform: translateY(-50px) translateX(30px);
    }

    100% {
        transform: translateY(0) translateX(0);
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        grid-template-areas: "image" "text" !important;
        /* Override any previous grid areas */
        text-align: center;
        gap: 1rem;
    }

    .hero-content.text-right-layout {
        grid-template-areas: "image" "text" !important;
    }

    .title {
        font-size: 2.75rem;
    }

    .description {
        margin: 0 auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .subtitle::before {
        display: none;
    }

    .hero-image {
        height: 300px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Fix floating cards positioning in responsive view */
    .floating-card.card-1,
    .hero-content.text-right-layout .card-1 {
        top: 10%;
        left: 50%;
        right: auto;
        transform: translateX(-120%);
    }

    .floating-card.card-2,
    .hero-content.text-right-layout .card-2 {
        bottom: 10%;
        right: 50%;
        left: auto;
        transform: translateX(120%);
    }
}

@media (max-width: 768px) {

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .title {
        font-size: 2.25rem;
    }

    .hero {
        min-height: 600px;
        height: auto;
        padding: 4rem 0;
    }

    .hero-graphic {
        width: 350px;
        height: 350px;
    }

    .shape-1 {
        width: 250px;
        height: 250px;
    }

    .shape-2 {
        width: 180px;
        height: 180px;
    }

    .shape-3 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .title {
        font-size: 1.875rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .description {
        font-size: 1rem;
    }

    .hero-graphic {
        width: 280px;
        height: 280px;
    }

    .floating-card {
        padding: 0.75rem;
        max-width: 150px;
    }

    .card-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .card-text {
        font-size: 10px  !important;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 220px;
        margin: 1rem auto 0;
    }

    .exploreService,
    .watchDemo {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stats-title {
        font-size: 1.5rem;
    }

    .stat-card {
        padding: 0.75rem;
    }
}

/* Modern Page Header Styles */
.page-header {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: var(--gradient-dark);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 3rem 0;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    background-image: linear-gradient(90deg, var(--text-light), #d1d5db);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

/* Removed subtitle styling */

/* Background Elements */
.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: var(--secondary-color);
}

.page-header-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.page-circle-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    filter: blur(60px);
}

.page-circle-2 {
    top: 50%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-secondary), var(--primary-color));
    filter: blur(80px);
}

.page-circle-3 {
    bottom: 10%;
    left: 20%;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    filter: blur(60px);
}

.page-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.page-p1 {
    top: 30%;
    left: 15%;
    width: 10px;
    height: 10px;
    animation: particle-float 15s linear infinite;
}

.page-p2 {
    top: 50%;
    left: 25%;
    width: 15px;
    height: 15px;
    animation: particle-float 20s linear infinite 2s;
}

.page-p3 {
    top: 25%;
    right: 25%;
    width: 8px;
    height: 8px;
    animation: particle-float 18s linear infinite 1s;
}

.page-p4 {
    bottom: 35%;
    right: 15%;
    width: 12px;
    height: 12px;
    animation: particle-float 22s linear infinite 3s;
}

.page-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

.page-breadcrumb a {
    color: var(--text-light);
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.page-breadcrumb a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.page-breadcrumb .divider {
    color: var(--text-muted);
}

/* Removed shape styling */

/* Responsive Styles */
@media (max-width: 992px) {
    .page-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        min-height: 350px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        min-height: 300px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }
}

/* Navbar Start */

/* Web Development Services CSS */

.services-section {
    position: relative;
    padding: 5rem 0;
    background: var(--secondary-color);
    overflow: hidden;
    color: var(--text-light);
}

.services-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
    margin-left: 20px;
    margin-bottom: 0.75rem;
}

.subtitle::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    width: 15px;
    height: 2px;
    background: var(--accent-color);
    transform: translateY(-50%);
}

.services-line {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 3px;
}

.service-intro {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.brand-highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.service-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--accent-color);
    border-radius: 50%;
    font-size: 0.875rem;
    color: var(--text-light);
}

.feature-text {
    font-weight: 500;
    color: var(--text-light);
}

.service-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    text-align: center;
    transition: transform var(--transition-medium);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: var(--border-radius-md);
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.card-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive styles */
@media (max-width: 992px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 4rem 0;
    }

    .service-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .service-cta {
        flex-direction: column;
        align-items: center;
    }

    .service-intro {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .service-cards {
        grid-template-columns: 1fr;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .service-description {
        font-size: 1rem;
    }

    .service-intro {
        padding: 1.5rem 1rem;
    }
}

/* End */

/* Modern Navbar CSS for IT Services Theme */
.navbar-container {
    position: relative;
    /* Change from fixed or static */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Keep high z-index */
}

.navbar {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    box-shadow: var(--shadow-soft);
    padding: 0.75rem 0;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(3, 9, 44, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Navbar Brand/Logo */
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand .headLogo {
    height: 45px;
    transition: all var(--transition-fast);
}

.navbar-brand:hover .headLogo {
    transform: translateY(-2px);
}

/* Main Navigation Links */
.navbar-nav {
    margin-right: 1.5rem;
}

.navbar-nav .nav-item {
    position: relative;
    margin: 0 0.2rem;
}

.navbar-nav .nav-link {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: all var(--transition-fast);
    border-radius: var(--border-radius-sm);
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transform: translateX(-100%);
    transition: transform var(--transition-fast);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    transform: translateX(0);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
}

/* Dropdown Menu Styling */
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
}

.dropdown-menu {
    background: rgba(3, 9, 44, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md) !important;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-card);
    padding: 0.5rem;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    margin-left: 0.5rem;
    transition: all var(--transition-fast);
}

.dropdown-toggle:hover i {
    transform: rotate(180deg);
}

.dropdown-menu {
    background: rgba(3, 9, 44, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md) !important;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-card);
    padding: 0.5rem;
}

.dropdown-item {
    color: var(--text-light);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--accent-color);
    color: var(--text-light);
    transform: translateX(5px);
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 1rem;
}

.contact-icon {
    position: relative;
    margin-right: 1rem;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    box-shadow: 0 5px 15px rgba(255, 77, 90, 0.3);
}

.icon-circle i {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-icon:hover .icon-circle {
    transform: scale(1.1) rotate(15deg);
    background: var(--accent-hover);
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-number {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.contact-number:hover {
    color: var(--accent-color);
    cursor: pointer;
}

/* Mobile Toggle Button */
.navbar-toggler {
    border: none;
    width: 40px;
    height: 40px;
    padding: 0;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    /* background-image: none; */
    position: relative;
    width: 20px;
    height: 2px;
    background: var(--text-light);
    margin: 0 auto;
    transition: all var(--transition-fast);
    top: 5%;
    left: 26%;
    transform: translate(-50%, -50%);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--text-light);
    left: 0;
    transition: all var(--transition-fast);
}

.navbar-toggler-icon::before {
    top: -6px;
}

.navbar-toggler-icon::after {
    top: 6px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(3, 9, 44, 0.98);
        border-radius: var(--border-radius-md);
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: var(--shadow-card);
        border: 1px solid var(--card-border);
    }

    .navbar-nav {
        margin-right: 0;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }

    .contact-wrapper {
        flex-direction: row;
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: center;
    }

    .dropdown-menu {
        background: rgba(15, 28, 84, 0.5);
        border: none;
        box-shadow: none;
    }
}

@media (max-width: 576px) {
    .navbar-brand .headLogo {
        height: 35px;
    }

    .contact-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .contact-info {
        text-align: center;
    }
}

/* Navbar End */

/* Project Section */

/* Projects Section Styling */
.projects-section {
    position: relative;
    padding: 6rem 0;
    background: var(--gradient-dark);
    overflow: hidden;
}

/* Section Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
    margin-left: 20px;
    margin-bottom: 0.5rem;
}

.subtitle::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    width: 15px;
    height: 2px;
    background: var(--accent-color);
    transform: translateY(-50%);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    background-image: linear-gradient(90deg, var(--text-light), #d1d5db);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 3px;
}

/* Projects Grid Layout */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Project Card Styling */
.project-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-medium);
    backdrop-filter: blur(10px);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Project Image Container */
.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

/* Project Overlay Styling */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(3, 9, 44, 0.2) 0%,
            rgba(3, 9, 44, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--border-radius-sm);
    align-self: flex-start;
    box-shadow: 0 5px 15px rgba(255, 77, 90, 0.3);
    transform: translateY(-20px);
    transition: all var(--transition-medium);
}

.project-card:hover .project-category {
    transform: translateY(0);
}

.project-actions {
    display: flex;
    justify-content: flex-end;
    transform: translateY(20px);
    transition: all var(--transition-medium);
}

.project-card:hover .project-actions {
    transform: translateY(0);
}

.view-project {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-fast);
}

.view-project:hover {
    background: var(--accent-color);
    transform: rotate(90deg);
}

/* Project Info Styling */
.project-info {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    transition: color var(--transition-fast);
}

.project-card:hover .project-title {
    color: var(--accent-color);
}

.project-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* CTA Button */
.projects-cta {
    text-align: center;
    margin-top: 2rem;
}

.view-all-projects {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-light);
    font-weight: 600;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-fast);
    box-shadow: 0 10px 20px rgba(255, 77, 90, 0.25);
}

.view-all-projects:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 77, 90, 0.35);
}

.arrow-icon {
    transition: transform var(--transition-fast);
}

.view-all-projects:hover .arrow-icon {
    transform: translateX(5px);
}

/* Background Elements */
.projects-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    z-index: 0;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-image {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.875rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .subtitle::before {
        display: none;
    }

    .project-info {
        padding: 1.25rem;
    }

    .view-all-projects {
        padding: 0.875rem 1.5rem;
    }
}

/* Project Section Ends */

/* About Us Section */

/* About Section Styles */
.about-section {
    position: relative;
    padding: 6rem 0;
    background: var(--gradient-dark);
    overflow: hidden;
    color: var(--text-light);
}

.about-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.about-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    transition: transform var(--transition-medium);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.about-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.quote-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    position: relative;
    margin-top: 1rem;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(255, 77, 90, 0.3);
}

.quote-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0;
    font-style: italic;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.about-cta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

/* Background Elements */
.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-circle-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    filter: blur(80px);
}

.about-circle-2 {
    top: 60%;
    right: 5%;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--accent-secondary), var(--primary-color));
    filter: blur(100px);
}

.about-circle-3 {
    bottom: 10%;
    left: 25%;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    filter: blur(80px);
}

.about-p1 {
    top: 25%;
    left: 15%;
    width: 10px;
    height: 10px;
    animation: particle-float 15s linear infinite;
}

.about-p2 {
    top: 55%;
    left: 25%;
    width: 15px;
    height: 15px;
    animation: particle-float 20s linear infinite 2s;
}

.about-p3 {
    top: 35%;
    right: 20%;
    width: 8px;
    height: 8px;
    animation: particle-float 18s linear infinite 1s;
}

.about-p4 {
    bottom: 20%;
    right: 15%;
    width: 12px;
    height: 12px;
    animation: particle-float 22s linear infinite 3s;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .about-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }

    .about-cta {
        flex-direction: column;
        align-items: center;
    }

    .about-cta .exploreService,
    .about-cta .watchDemo {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-card {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .quote-text {
        font-size: 1rem;
    }
}
/* About Us Section End */

/* Rain Effect - Background Animation */
.rain-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.rain-drop {
    position: absolute;
    top: -20%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50% 50% 5% 5%;
    backdrop-filter: blur(4px);
    animation: rain-fall linear infinite;
    z-index: 1;
}

@keyframes rain-fall {
    0% {
        transform: translateY(-5%);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(110vh);
        opacity: 0;
    }
}

/* Logo Circles - Floating logos in rain effect */
.logo-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.logo-circle {
    position: absolute;
    top: -100px;
    background: rgba(0, 28, 77, 0.6);
    /* Navy color with opacity */
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 28, 77, 0.5);
    animation: logo-float cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
    /* Smooth easing */
    backdrop-filter: blur(4px);
    opacity: 0;
}

.logo-circle img {
    width: 70%;
    height: auto;
    opacity: 0.95;
    filter: brightness(1.4) drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
    transition: transform 0.8s ease-out;
}

.logo-circle:hover img {
    transform: scale(1.1) rotate(10deg);
}

@keyframes logo-float {
    0% {
        transform: translateY(-10%) rotate(0deg) scale(0.9);
        opacity: 0;
    }

    10% {
        opacity: 0.9;
        transform: translateY(5%) rotate(20deg) scale(1);
    }

    25% {
        transform: translateY(25vh) rotate(90deg) scale(1.05);
    }

    50% {
        transform: translateY(50vh) rotate(180deg) scale(1);
    }

    75% {
        transform: translateY(75vh) rotate(270deg) scale(0.95);
    }

    90% {
        opacity: 0.9;
        transform: translateY(90vh) rotate(340deg) scale(0.9);
    }

    100% {
        transform: translateY(110vh) rotate(360deg) scale(0.8);
        opacity: 0;
    }
}

/* Enhanced 404 Container */
.error-container {
    position: relative;
    z-index: 10;
    background: rgba(15, 28, 84, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.error-container .display-1 {
    font-weight: 800;
    background: linear-gradient(45deg, #ff4d5a, #ff8f6c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(255, 77, 90, 0.3);
}

.error-container i.bi-exclamation-triangle {
    color: #ff4d5a;
    text-shadow: 0 0 20px rgba(255, 77, 90, 0.8);
}

.error-container h1.mb-4 {
    font-weight: 700;
    color: #0f1c54;
}

.error-container p.mb-4 {
    color: #4b5563;
    font-size: 1.1rem;
    max-width: 80%;
    margin: 0 auto;
}

/* Enhanced Button Style */
.btn-primary.rounded-pill {
    background: linear-gradient(45deg, #ff4d5a, #ff8f6c);
    border: none;
    box-shadow: 0 10px 20px rgba(255, 77, 90, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 1rem 2rem;
}

.btn-primary.rounded-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 77, 90, 0.4);
}

/* Animation for 404 content */
.fadeIn {
    animation: fadeInAnimation 1s ease-in-out;
}

@keyframes fadeInAnimation {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .error-container {
        padding: 2rem 1rem;
    }

    .error-container p.mb-4 {
        max-width: 100%;
    }
}

/* Blog Section Styles */
.blog-section {
    position: relative;
    padding: 6rem 0;
    background: var(--secondary-color);
    overflow: hidden;
}

/* Background Effects */
.blog-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    z-index: 0;
}

.blog-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-secondary), var(--primary-color));
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    background-image: linear-gradient(90deg, var(--text-light), #d1d5db);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 3px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    position: relative;
    z-index: 2;
}

/* Blog Card */
.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border-color: rgba(255, 255, 255, 0.12);
}

/* Blog Card Image */
.blog-card-image {
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 77, 90, 0.3);
    transition: transform var(--transition-fast);
}

.blog-card:hover .blog-category {
    transform: translateY(-3px);
    background: var(--accent-hover);
}

/* Blog Card Content */
.blog-card-content {
    padding: 1.75rem 1.5rem 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Blog Author */
.blog-author {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.blog-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
    margin-right: 1rem;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.blog-card:hover .blog-author img {
    transform: scale(1.05);
    border-color: var(--accent-color);
}

.blog-author-info h5 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.blog-author-info span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Blog Title & Excerpt */
.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
    transition: color var(--transition-fast);
    line-height: 1.4;
}

.blog-card:hover .blog-title {
    color: var(--accent-color);
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Blog Actions */
.blog-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-read-more {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: transform var(--transition-fast);
}

.blog-read-more i {
    margin-left: 0.5rem;
    transition: transform var(--transition-fast);
}

.blog-read-more:hover {
    transform: translateX(3px);
    cursor: pointer;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

/* Share Feature */
.blog-share {
    position: relative;
}

.share-toggle {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
}

.share-toggle i {
    color: var(--accent-secondary);
    transition: transform var(--transition-fast);
}

.share-toggle:hover i {
    transform: rotate(15deg);
}

.share-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(3, 9, 44, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 0.75rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 10;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
}

.blog-share:hover .share-dropdown,
.share-toggle:focus+.share-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all var(--transition-fast);
}

.share-icon.facebook {
    background: #3b5998;
}

.share-icon.twitter {
    background: #1da1f2;
}

.share-icon.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.share-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Blog Footer */
.blog-footer {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--primary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-stat {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.blog-stat i {
    margin-right: 0.5rem;
    color: var(--accent-secondary);
}

.blog-stat:hover {
    color: var(--text-light);
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3.5rem;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.pagination-arrow,
.pagination-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    color: var(--text-light);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
    margin: 0 0.5rem;
}

.pagination-number.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(255, 77, 90, 0.3);
}

.pagination-arrow:hover,
.pagination-number:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Animation for blog cards on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.blog-card:nth-child(1) {
    animation-delay: 0.3s;
}

.blog-card:nth-child(2) {
    animation-delay: 0.5s;
}

.blog-card:nth-child(3) {
    animation-delay: 0.7s;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .blog-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-image img {
        height: 200px;
    }

    .blog-author img {
        width: 40px;
        height: 40px;
    }

    .blog-title {
        font-size: 1.2rem;
    }

    .blog-stat {
        font-size: 0.8rem;
    }

    .pagination-arrow,
    .pagination-number {
        width: 35px;
        height: 35px;
    }
}

/* Team Section Styles - Modern Dark Theme */
.team-section {
    position: relative;
    padding: 6rem 0;
    background: var(--gradient-dark);
    overflow: hidden;
}

/* Background Elements */
.team-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-secondary), var(--primary-color));
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(80px);
    z-index: 0;
}

.team-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(80px);
    z-index: 0;
}

/* Section Header */
.team-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.team-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.team-title {
    font-size: 2.75rem;
    font-weight: 800;
    background-image: linear-gradient(90deg, var(--text-light), #d1d5db);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
}

.title-line {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 3px;
}

/* Team Cards */
.team-carousel {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all var(--transition-medium);
    transform-origin: center bottom;
    box-shadow: var(--shadow-card);
    z-index: 1;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: -1;
    filter: blur(30px);
}

.team-card:hover .card-glow {
    opacity: 0.15;
}

/* Member Image */
.member-image-container {
    position: relative;
    padding: 2rem 2rem 0;
}

.member-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    transform-origin: center;
    transition: all var(--transition-medium);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.team-card:hover .member-image {
    border-color: var(--accent-color);
}

.team-card:hover .member-image img {
    transform: scale(1.05);
}

.member-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: 1;
}

.team-card:hover .member-image::before {
    opacity: 1;
}

/* Member Info */
.member-info {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    transition: all var(--transition-fast);
}

.team-card:hover .member-name {
    color: var(--accent-color);
}

.member-position {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--text-light);
    border-radius: 50%;
    font-size: 1rem;
    transition: all var(--transition-fast);
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(255, 77, 90, 0.25);
}

.social-link:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 77, 90, 0.35);
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
    transition: all var(--transition-fast);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 77, 90, 0.25);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .team-carousel {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .team-title {
        font-size: 2.25rem;
    }

    .team-carousel {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .member-image-container {
        padding: 1.5rem 1.5rem 0;
    }

    .member-info {
        padding: 1.25rem 1.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 6rem 0;
    }

    .team-header {
        margin-bottom: 3rem;
    }

    .team-title {
        font-size: 2rem;
    }

    .team-carousel {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 576px) {
    .team-section {
        padding: 6.5rem 0;
    }

    .team-subtitle {
        font-size: 1rem;
    }

    .team-title {
        font-size: 1.75rem;
    }

    .team-carousel {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .member-image-container {
        padding: 1rem 1rem 0;
    }

    .member-info {
        padding: 1rem;
    }

    .member-name {
        font-size: 1.1rem;
    }

    .member-position {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .nav-btn {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 400px) {
    .team-carousel {
        grid-template-columns: 1fr;
        max-width: 250px;
        margin: 0 auto;
    }
}

/* For Owl Carousel Integration */
.owl-carousel.team-carousel {
    display: block;
}

.owl-carousel .team-card {
    margin: 10px;
}

.owl-nav {
    position: absolute;
    top: -80px;
    right: 0;
    display: flex;
    gap: 1rem;
}

.owl-prev,
.owl-next {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--text-light) !important;
    font-size: 1rem;
    transition: all var(--transition-fast);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.owl-prev:hover,
.owl-next:hover {
    background: var(--accent-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 77, 90, 0.25);
}

@media (max-width: 992px) {
    .owl-nav {
        top: auto;
        bottom: -80px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
}

/*** Topbar Start ***/
.topbar-container {
    background: var(--secondary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 0;
    position: relative;
    overflow: hidden;
}

.topbar-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(-5deg);
    pointer-events: none;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.topbar .top-info {
    letter-spacing: 0.5px;
}

.topbar .top-info small {
    color: var(--text-muted);
    font-weight: 400;
    display: flex;
    align-items: center;
    transition: all var(--transition-fast);
}

.topbar .top-info small:hover {
    color: var(--text-light);
}

.topbar .top-info i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.topbar .top-info small:hover i {
    transform: translateY(-2px);
}

#note {
    position: relative;
    overflow: hidden;
    max-width: 500px;
    padding: 0 1rem;
}

#note small {
    color: var(--accent-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
    animation: slide-text 15s infinite linear;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.topbar .top-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.topbar .top-link a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transform: scale(0);
    transition: transform var(--transition-fast);
    border-radius: 50%;
    z-index: -1;
}

.topbar .top-link a:hover::before {
    transform: scale(1);
}

.topbar .top-link a i {
    color: var(--text-light);
    font-size: 0.75rem;
    transition: all var(--transition-fast);
}

.topbar .top-link a:hover i {
    color: var(--text-light);
    transform: rotate(360deg);
}

@keyframes slide-text {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    #note {
        max-width: 300px;
    }
}

@media (max-width: 767.98px) {
    .topbar-container {
        display: none;
    }
}

/*** Topbar End ***/


/*** Services Start ***/
/*** Services Start ***/
.services {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f1c54 0%, #03092c 50%, #0f1c54 100%);
    padding: 100px 0;
}

.services::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 77, 90, 0.15) 0%, rgba(75, 123, 236, 0.1) 50%, transparent 70%);
    filter: blur(100px);
    border-radius: 50%;
    z-index: 0;
    animation: change 6s ease-in-out infinite;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(75, 123, 236, 0.15) 0%, rgba(255, 77, 90, 0.1) 50%, transparent 70%);
    filter: blur(90px);
    border-radius: 50%;
    z-index: 0;
    animation: change 8s ease-in-out infinite reverse;
}

.services .services-item {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    transition: all var(--transition-medium);
    position: relative;
    height: 100%;
    border: 2px solid transparent;
    background: linear-gradient(145deg, 
        rgba(15, 28, 84, 0.95) 0%, 
        rgba(3, 9, 44, 0.9) 50%, 
        rgba(15, 28, 84, 0.95) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(75, 123, 236, 0.2),
        0 0 0 1px rgba(75, 123, 236, 0.1);
}

.services-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-secondary) 50%, 
        transparent 100%);
    opacity: 0;
    transform: scaleX(0);
    transition: all var(--transition-medium);
    z-index: 3;
    border-radius: 2px;
}

.services-content {
    position: relative;
    height: 100%;
    z-index: 2;
    padding: 40px 30px;
    border-radius: var(--border-radius-xl);
    transition: all var(--transition-medium);
    background: transparent;
}

.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: var(--border-radius-xl);
    background: linear-gradient(135deg, 
        rgba(15, 28, 84, 0.8) 0%, 
        rgba(3, 9, 44, 0.9) 50%, 
        rgba(15, 28, 84, 0.85) 100%);
    transition: all var(--transition-medium);
    z-index: -1;
    opacity: 0;
}

.services-item:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(75, 123, 236, 0.4);
    box-shadow: 
        0 35px 70px rgba(15, 28, 84, 0.4),
        0 15px 30px rgba(75, 123, 236, 0.2),
        inset 0 1px 0 rgba(75, 123, 236, 0.3),
        0 0 0 1px rgba(75, 123, 236, 0.3);
}

.services-item:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
}

.services-content-icon {
    position: relative;
    z-index: 3;
    transition: all var(--transition-medium);
}

.services-content-icon i {
    transition: all var(--transition-medium);
    color: white !important;
    filter: drop-shadow(0 10px 20px rgba(75, 123, 236, 0.3));
}

.services-item:hover .services-content-icon i {
    color: var(--accent-color) !important;
    transform: scale(1.1) rotateY(360deg);
    filter: drop-shadow(0 15px 30px rgba(255, 77, 90, 0.4));
    text-shadow: 0 0 30px rgba(255, 77, 90, 0.5);
}

.services-content-icon h4 {
    transition: all var(--transition-medium);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.services-item:hover .services-content-icon h4 {
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.services-content-icon p {
    transition: all var(--transition-medium);
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.services-item:hover .services-content-icon p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.services .btn {
    transition: all var(--transition-fast);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.services .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all var(--transition-fast);
    z-index: -1;
}

.services-item:hover .btn-secondary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    border-color: var(--accent-color);
    color: var(--text-light) !important;
    box-shadow: 
        0 15px 30px rgba(255, 77, 90, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.services-item:hover .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 40px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.services-item:hover .btn-secondary::before {
    left: 100%;
}

/* Floating animation */
@keyframes change {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Glowing effect animation */
@keyframes glow {
    0%, 100% {
        box-shadow: 
            0 35px 70px rgba(15, 28, 84, 0.4),
            0 15px 30px rgba(75, 123, 236, 0.2),
            inset 0 1px 0 rgba(75, 123, 236, 0.3),
            0 0 0 1px rgba(75, 123, 236, 0.3);
    }
    50% {
        box-shadow: 
            0 35px 70px rgba(15, 28, 84, 0.5),
            0 15px 30px rgba(75, 123, 236, 0.4),
            inset 0 1px 0 rgba(75, 123, 236, 0.4),
            0 0 0 1px rgba(75, 123, 236, 0.5);
    }
}

.services-item:hover {
    animation: glow 2s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services {
        padding: 80px 0;
    }
    
    .services-content {
        padding: 30px 20px;
    }
    
    .services-content-icon i {
        font-size: 4rem !important;
    }
    
    .services-content-icon h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .services {
        padding: 60px 0;
    }
    
    .services-content {
        padding: 25px 15px;
    }
    
    .services-content-icon i {
        font-size: 3.5rem !important;
    }
}
/*** Services End ***/

/* Contact Section Styles - Compact Version */
.contact-section {
    position: relative;
    padding: 3rem 0;
    /* Reduced padding from 5rem to 3rem */
    background: var(--gradient-dark);
    overflow: hidden;
}

.section-header {
    margin-bottom: 2rem;
    /* Reduced from 3rem */
}

.section-subtitle {
    font-size: 1rem;
    /* Reduced from 1.2rem */
    font-weight: 600;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
    /* Reduced from 1rem */
}

.section-title {
    font-size: 2rem;
    /* Reduced from 2.8rem */
    font-weight: 700;
    line-height: 1.2;
    background-image: linear-gradient(90deg, var(--text-light), #d1d5db);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.8rem;
    /* Reduced from 1.2rem */
}

.section-description {
    font-size: 0.95rem;
    /* Reduced from 1.1rem */
    color: var(--text-muted);
    max-width: 500px;
    /* Reduced from 600px */
    margin: 0 auto;
}

.contact-detail {
    position: relative;
    z-index: 2;
}

/* Make contact cards more compact */
.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    padding: 1.25rem;
    /* Reduced from 2rem */
    height: 100%;
    transition: transform var(--transition-medium), background var(--transition-medium);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    /* Reduced from -10px */
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
}

.contact-card-icon {
    width: 50px;
    /* Reduced from 70px */
    height: 50px;
    /* Reduced from 70px */
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    /* Reduced from 1.5rem */
    font-size: 1.4rem;
    /* Reduced from 1.8rem */
    color: var(--text-light);
    transition: all var(--transition-fast);
    box-shadow: 0 6px 15px rgba(255, 77, 90, 0.3);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.05) rotate(5deg);
    /* Reduced scale and rotation */
    background: var(--accent-hover);
}

.contact-card-content h5 {
    font-size: 1.1rem;
    /* Changed from h4 with 1.4rem */
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    /* Reduced from 1rem */
}

.contact-card-content a,
.contact-card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    /* Reduced from 1.1rem */
    transition: all var(--transition-fast);
    display: block;
    margin-bottom: 0.3rem;
    /* Reduced from 0.5rem */
}

.contact-card-content a:hover {
    color: var(--accent-color);
    transform: translateX(3px);
    /* Reduced from 5px */
}

/* Center the Google Map */
.contact-map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.contact-map {
    height: 100%;
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
    display: flex;
    justify-content: center;
    align-items: center;
}

.googleMap {
    width: 100%;
    height: 350px;
    /* Reduced from 450px */
    border-radius: var(--border-radius-lg);
    display: block;
}

/* Compact contact form */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    padding: 1.75rem;
    /* Reduced from 2.5rem */
    height: 100%;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 0.65rem 1rem;
    /* Reduced from 0.75rem 1.25rem */
    color: var(--text-light);
    transition: all var(--transition-fast);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 77, 90, 0.2);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

.contact-form .btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.7rem 1.75rem;
    /* Reduced from 0.875rem 2rem */
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all var(--transition-fast);
    box-shadow: 0 8px 15px rgba(255, 77, 90, 0.25);
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    /* Reduced from -3px */
    box-shadow: 0 12px 20px rgba(255, 77, 90, 0.35);
}

/* Background elements */
.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(-5deg);
    pointer-events: none;
}

/* Responsive styles - More concise for smaller screens */
@media (max-width: 992px) {
    .section-title {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .googleMap {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
    }

    .contact-card {
        padding: 1.25rem;
    }

    .contact-card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .googleMap {
        height: 300px;
    }

    /* Make map appear above form on smaller screens */
    .contact-map-container {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .googleMap {
        height: 250px;
    }
}

/*** Footer Start ***/
/* Modern Footer Styles */
.footer-wrapper {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
    color: var(--text-light);
    z-index: 1;
}

/* Footer Background Elements */
.footer-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><rect fill-opacity="0.05" x="25" y="25" width="50" height="50" transform="rotate(45 50 50)"/></svg>');
    opacity: 0.1;
    z-index: -1;
}

/* Footer Top Section */
.footer-top {
    padding: 5rem 0 3rem;
    position: relative;
}

.footer-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.1) 20%,
            rgba(255, 255, 255, 0.1) 80%,
            rgba(255, 255, 255, 0));
}

/* Footer Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: inline-block;
    max-width: 180px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all var(--transition-fast);
}

.footer-logo:hover img {
    transform: translateY(-3px);
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.3)) brightness(1.1);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.85rem;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    z-index: -1;
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

.social-btn:hover {
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 77, 90, 0.25);
}

.social-btn:hover::before {
    transform: translateY(0);
}

.social-btn i {
    position: relative;
    z-index: 2;
}

/* Footer Links Section */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-divider {
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-menu li {
    position: relative;
}

.footer-menu a {
    display: flex;
    align-items: center;
    color: var(--text-muted) !important;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.footer-menu a i {
    color: var(--accent-color);
    font-size: 0.75rem;
    margin-right: 0.75rem;
    transition: all var(--transition-fast);
    opacity: 0.8;
}

.footer-menu a:hover {
    color: var(--text-light) ;
    transform: translateX(5px);
}

.footer-menu a:hover i {
    opacity: 1;
    transform: translateX(2px);
}

/* Footer Contact Section */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-medium);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--border-radius-sm);
    background: var(--accent-color);
    color: white;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(255, 77, 90, 0.3);
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    transform: rotate(15deg) scale(1.1);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-text strong {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Footer Bottom Section */
.footer-bottom {
    padding: 1.5rem 0;
    position: relative;
}

.copyright p,
.credits p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.copyright a,
.credits a {
    color: var(--accent-color);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.copyright a:hover,
.credits a:hover {
    color: var(--text-light);
}

.copyright a i {
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.credits {
    text-align: right;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .footer-top {
        padding: 4rem 0 2rem;
    }
}

@media (max-width: 767.98px) {

    .footer-links,
    .footer-contact,
    .footer-brand {
        margin-bottom: 2rem;
    }

    .copyright,
    .credits {
        text-align: center;
        margin: 0.5rem 0;
    }
}

@media (max-width: 575.98px) {
    .footer-top {
        padding: 3rem 0 1.5rem;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .contact-item {
        padding: 0.75rem;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .social-btn {
        width: 34px;
        height: 34px;
    }
}

/* Footer Animation Effects */

/* Animation base styles */
.footer-brand,
.footer-links,
.footer-contact {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Animation delay for staggered effect */
.footer-links:nth-child(1) {
    transition-delay: 0.1s;
}

.footer-links:nth-child(2) {
    transition-delay: 0.2s;
}

.footer-contact {
    transition-delay: 0.3s;
}

/* Apply animation when elements enter viewport */
.footer-brand.animated,
.footer-links.animated,
.footer-contact.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Ripple effect for social buttons */
.social-btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Floating animation for contact icons */
.contact-icon {
    animation: floating 3s ease-in-out infinite;
}

.contact-item:nth-child(2) .contact-icon {
    animation-delay: 0.5s;
}

.contact-item:nth-child(3) .contact-icon {
    animation-delay: 1s;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Footer background particles */
.footer-wrapper {
    position: relative;
}

.footer-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.footer-p1 {
    top: 20%;
    left: 10%;
    width: 10px;
    height: 10px;
    animation: particle-float 15s linear infinite;
}

.footer-p2 {
    top: 60%;
    left: 20%;
    width: 15px;
    height: 15px;
    animation: particle-float 20s linear infinite 2s;
}

.footer-p3 {
    top: 30%;
    right: 20%;
    width: 8px;
    height: 8px;
    animation: particle-float 18s linear infinite 1s;
}

.footer-p4 {
    bottom: 30%;
    right: 10%;
    width: 12px;
    height: 12px;
    animation: particle-float 22s linear infinite 3s;
}

.footer-p5 {
    bottom: 10%;
    left: 30%;
    width: 7px;
    height: 7px;
    animation: particle-float 25s linear infinite 4s;
}

/* Gradient border for footer divider */
.footer-divider {
    position: relative;
    overflow: hidden;
}

.footer-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 77, 90, 0.7),
            var(--accent-color),
            rgba(255, 77, 90, 0.7),
            transparent);
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        left: 100%;
    }
}

/* Hover effect for footer menu items */
.footer-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width var(--transition-medium);
}

.footer-menu a:hover::before {
    width: 100%;
}

/*** Footer End ***/

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

#secondPhone {
    position: fixed;
    width: 56px;
    height: 58px;
    right: 3px;
    bottom: 90px;
    z-index: 99;
    background-color: navy;
    border-radius: 33px;
    opacity: 0;
    /* Initially hidden */
    transition: opacity 0.3s ease;
    /* Smooth transition */
    pointer-events: none;
    /* Disable interactions when hidden */
}


.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/




/*** Carousel Start ***/
.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item img {
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    background: var(--bs-primary);
    opacity: 1;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: 0;
    border-radius: 0 50px 50px 0;
}

.carousel-control-next {
    right: 0;
    border-radius: 50px 0 0 50px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-content button {
    border-radius: 20px;
    border: 0;
    transition: 1s;
}

.carousel-content .carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
}

.carousel-content .carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
}

.carousel-content .carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.carousel-content .carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
}



/* Responsive styles */
@media (max-width: 992px) {
    .carousel-item img {
        height: 80vh;
    }

    .carousel-caption h1 {
        font-size: 2.5rem !important;
    }

    .carousel-caption p {
        font-size: 1rem !important;
        max-width: 90%;
        margin: 0 auto 2rem auto;
    }
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 70vh;
    }

    .carousel-caption h6 {
        font-size: 1rem;
    }

    .carousel-caption h1 {
        font-size: 2rem !important;
    }

    .carousel-caption p {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 60px;
        height: 40px;
    }

    .carousel-content button {
        padding: 0.5rem 1.5rem !important;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .carousel-item img {
        height: 60vh;
    }

    .carousel-caption h6 {
        font-size: 0.9rem;
    }

    .carousel-caption h1 {
        font-size: 1.5rem !important;
    }

    .carousel-caption p {
        font-size: 0.5rem !important;
        margin-bottom: 1rem;
    }

    .carousel-content button {
        padding: 0.4rem 1.2rem !important;
        font-size: 0.6rem;
    }
}


.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/

/*** Testimonial Start ***/

/* Testimonial Section Styles */
.testimonial-section {
    position: relative;
    background: var(--secondary-color);
    overflow: hidden;
}

.testimonial-header {
    position: relative;
    z-index: 2;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
    margin-left: 20px;
}

.subtitle::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    width: 15px;
    height: 2px;
    background: var(--accent-color);
    transform: translateY(-50%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 3px;
}

/* Testimonial Slider */
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial-item {
    flex: 0 0 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.testimonial-item.active {
    opacity: 1;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-medium);
}

.testimonial-content:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 77, 90, 0.3);
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    backdrop-filter: blur(10px);
}

.testimonial-quote {
    position: absolute;
    top: -15px;
    left: 25px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(255, 77, 90, 0.3);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.testimonial-rating i {
    color: var(--accent-color);
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-left: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(255, 77, 90, 0.2);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.author-position {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Navigation */
.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    gap: 1.5rem;

}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.nav-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 77, 90, 0.5);
}

/* Background Elements */
.testimonial-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    filter: blur(120px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 1;
}

.testimonial-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--accent-secondary), var(--primary-color));
    filter: blur(100px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .testimonial-content {
        padding: 1.5rem;
    }

    .testimonial-quote {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .author-image {
        width: 50px;
        height: 50px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .testimonial-content {
        padding: 1.25rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .author-name {
        font-size: 1rem;
    }

    .author-position {
        font-size: 0.85rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .testimonial-item {
        padding: 0.75rem;
    }

    .testimonial-rating {
        gap: 3px;
    }

    .testimonial-rating i {
        font-size: 0.9rem;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
    }
}

/*** Testimonial End ***/

/* Accordition Start */
/* Main container styling */
.accordion-body {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, #001122 100%);
    position: relative;
    overflow: hidden;
}

.accordion-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 77, 90, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(75, 123, 236, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Image container enhancements */
.h-100 {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.img-fluid {
    transition: transform var(--transition-medium) ease, filter var(--transition-medium) ease;
    border-radius: var(--border-radius-md) !important;
    box-shadow: var(--shadow-card);
}

.img-fluid:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* Accordion styling */
.accordion {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(15, 28, 84, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 2px;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-button {
    background: linear-gradient(135deg, rgba(15, 28, 84, 0.8) 0%, rgba(3, 9, 44, 0.9) 100%);
    border: none;
    padding: 1.5rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-light);
    transition: all var(--transition-fast) ease;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left var(--transition-fast) ease;
    z-index: -1;
}

.accordion-button:hover::before {
    left: 0;
}

.accordion-button:hover {
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 77, 90, 0.3);
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: 0 8px 25px rgba(255, 77, 90, 0.4);
    transform: translateY(-1px);
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(255, 77, 90, 0.2);
    outline: none;
}

/* Accordion button icons */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform var(--transition-fast) ease;
    width: 1.5rem;
    height: 1.5rem;
}

.accordion-button:hover::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: scale(1.1);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

/* Accordion content */
.accordion-collapse {
    border-top: 1px solid rgba(255, 77, 90, 0.2);
}

.accordion-body {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(3, 9, 44, 0.95) 0%, rgba(15, 28, 84, 0.9) 100%);
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
}

.accordion-body::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 0 2px 2px 0;
}

.accordion-body p {
    margin-bottom: 1rem;
    transition: color var(--transition-fast) ease;
}

.accordion-body p:hover {
    color: var(--accent-hover);
}

/* Highlight styling */
.highlight {
    color: var(--accent-color);
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transition: all var(--transition-fast) ease;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-fast) ease;
}

.highlight:hover::after {
    width: 100%;
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .accordion-button {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1.5rem;
    }
    
    .img-fluid {
        margin-bottom: 1rem !important;
    }
}

/* Animation for fade effects */
[data-aos="fade-right"] {
    animation: fadeInRight 1s ease-out;
}

[data-aos="fade-left"] {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Subtle pulse animation for highlights */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.highlight:hover {
    animation: pulse 2s infinite;
}
/* Accordition End */


.emailText {
    font-size: 17px !important;
}

@media screen and (max-width: 786px) {
    a.h5 {
        font-size: 13px;
    }

    .emailText {
        font-size: 13px !important;
    }
}

@media screen and (max-width: 328px) {
    .emailText {
        font-size: 10px !important;
    }
}

.googleMap {
    width: 480px;
    height: 498px;
}

@media (max-width: 767px) {
    .googleMap {
        width: auto;
        height: auto;
    }
}

@media (max-width: 490px) {
    .googleMap {
        width: 240px;
        height: 300px;
    }
}

@media (max-width: 375px) {
    .googleMap {
        width: 200px !important;
        height: 200px;
    }

    .p-5 {
        padding: 2rem !important;
    }

    .secondCrouselbutton1 {
        width: 100px;
        font-size: 8px;
    }

    .secondCrouselbutton2 {
        width: 100px;
        font-size: 7px;
    }
}

@media only screen and (max-width: 450px) {
    .getStartedToday {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        /* Adjust spacing for better readability */
    }

    .getStartedToday .d-inline-flex {
        justify-content: center;
        text-align: center;
        width: 100%;
        /* Make each item take full width */
    }

    .getStartedToday i {
        margin-right: 0.5rem;
        /* Maintain spacing between icons and text */
    }

    .getStartedToday span {
        font-size: 0.9rem;
        /* Slightly adjust font size for smaller screens */
    }
}



@media (max-width: 430px) {
    .googleMap {
        width: 240px;
        height: 200px;
    }

    .p-5 {
        padding: 2rem !important;
    }

    .text-start {
        text-align: center !important;
    }
}

/* Landscape and Portrait for iPad Pro */
@media (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
    .googleMap {
        width: 300px;
    }
}