/* Floating appointment button */
.appointment-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #1e3a8a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}

.appointment-fab i {
    font-size: 20px;
}

.appointment-fab:hover {
    background: #0f2a6d;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

@media (min-width: 992px) {
    .verma-header+.main-content {
        /* ensure content doesn't collide on some layouts */
        scroll-margin-top: 80px;
    }
}

/* Floating Social FAB */
.social-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1001;
}

.social-fab-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #ef6012;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
    position: relative;
    overflow: visible;
}

.social-fab-toggle i {
    font-size: 20px;
}

.social-fab-toggle:hover {
    background: #d54e00;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

/* Waving shadow effect */
.social-fab-toggle::before,
.social-fab-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(239, 96, 18, 0.45);
    pointer-events: none;
}

.social-fab-toggle::before {
    animation: fabWave 2.2s ease-out infinite;
}

.social-fab-toggle::after {
    animation: fabWave 2.2s ease-out infinite;
    animation-delay: 1.1s;
    /* stagger to create continuous wave */
}

@keyframes fabWave {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 96, 18, 0.45);
        opacity: 1;
    }

    60% {
        box-shadow: 0 0 0 18px rgba(239, 96, 18, 0);
        opacity: 0.2;
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 96, 18, 0);
        opacity: 0;
    }
}

/* Make wave color slightly darker on hover for contrast */
.social-fab-toggle:hover::before,
.social-fab-toggle:hover::after {
    box-shadow: 0 0 0 0 rgba(213, 78, 0, 0.5);
}

.fab-actions {
    position: absolute;
    right: 0;
    bottom: 66px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.fab-action {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    transform: translateY(10px);
    opacity: 0;
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.fab-action {
    color: #fff !important;
}

.fab-action:hover,
.fab-action:focus {
    color: #fff !important;
}

.fab-action i {
    color: #fff;
    font-size: 25px;
}

.fab-whatsapp {
    background: #4eec69;
}

.fab-facebook {
    background: #1877F2;
}

.fab-instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.fab-action:hover {
    filter: brightness(0.9);
}

.social-fab.open .fab-actions {
    pointer-events: auto;
}

.social-fab.open .fab-actions .fab-action {
    transform: translateY(0);
    opacity: 1;
}

.social-fab.open .fab-actions .fab-action:nth-child(1) {
    transition-delay: .02s;
}

.social-fab.open .fab-actions .fab-action:nth-child(2) {
    transition-delay: .06s;
}

.social-fab.open .fab-actions .fab-action:nth-child(3) {
    transition-delay: .1s;
}

/* Verma Accounting & Financial Services - Main Styles */

/* Import Google Fonts - Roboto */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Bootstrap Override - Prevent conflicts */
.verma-navbar {
    font-family: "Roboto", Arial, sans-serif !important;
}

/* Prevent Bootstrap from overriding our custom styles */
.navigation-header * {
    box-sizing: border-box !important;
}

.verma-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section containers */
.section-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 4rem 2rem !important;
    width: 100% !important;
}

.section-container-sm {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 2rem 2rem !important;
    width: 100% !important;
}

.section-container-lg {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 6rem 2rem !important;
    width: 100% !important;
}

/* Content containers */
.content-container {
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    width: 100% !important;
}

.content-container-sm {
    max-width: 600px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    width: 100% !important;
}

.content-container-lg {
    max-width: 1000px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    width: 100% !important;
}

.verma-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.verma-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.verma-form-group {
    margin-bottom: 1.5rem;
}

.verma-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.verma-form-group input,
.verma-form-group select,
.verma-form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.verma-form-group input:focus,
.verma-form-group select:focus,
.verma-form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

body {
    font-family: "Roboto", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Navigation Styles */
.verma-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.verma-header.loaded {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.verma-header .verma-nav {
    padding: 0;
    margin: 0;
    font-family: "Roboto", Arial, sans-serif;
}

.verma-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.verma-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verma-logo a {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.verma-logo a:hover {
    transform: scale(1.05);
}

.verma-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.verma-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 991px) {
    .verma-menu {
        gap: 0.5rem;
    }
}

.verma-link {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.verma-link:hover {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.15);
}

.verma-link.active {
    background: transparent;
    color: #f97316;
    font-weight: 600;
    position: relative;
}

@media (min-width: 991px) {
    .verma-link.active::after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
        background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
        border-radius: 2px;
    }
}

/* Dropdown Styles */
.verma-submenu {
    position: relative;
}

.verma-toggle {
    cursor: pointer;
}

.verma-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

@media (min-width: 992px) {
    .verma-submenu:hover .verma-arrow {
        transform: rotate(180deg);
    }
}

.verma-submenu-items {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgb(255, 255, 255);
    border-radius: 8px;
    padding: 0.5rem 0;
    border-radius: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

@media (min-width: 992px) {
    .verma-submenu:hover .verma-submenu-items {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.verma-submenu-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.verma-submenu-link:hover {
    background: rgba(249, 115, 22, 0.08);
    color: #f97316;
    border-left-color: #f97316;
    transform: translateX(3px);
    box-shadow: 0 2px 4px rgba(249, 115, 22, 0.1);
}

/* Contact Information */
.verma-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.verma-contact-icon {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(249, 115, 22, 0.3);
    transition: transform 0.3s ease;
}

.verma-contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.verma-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verma-phone-link {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    transition: color 0.3s ease;
}

.verma-phone-link:hover {
    color: #f97316;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Header book button matching call style */
.verma-cta .verma-book {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.verma-book-icon {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.35);
}

.verma-book-link {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
}

.verma-cta .verma-book:hover .verma-book-link {
    color: #f97316;
}


.phone-separator {
    color: #64748b;
    font-size: 20px;
}

/* Hamburger Menu Toggle */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1003;
    position: relative;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.hamburger input {
    display: none;
}

.hamburger svg {
    height: 2.5em;
    width: 2.5em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
    fill: none;
    stroke: #1e3a8a;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
    stroke-dasharray: 12 63;
}

.hamburger input:checked+svg {
    transform: rotate(-45deg);
}

.hamburger input:checked+svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

/* Responsive Design for Medium and Small Screens */
@media (max-width: 1024px) {
    .verma-container {
        padding: 0.75rem 1.5rem;
    }

    .verma-logo-img {
        height: 50px;
    }

    .verma-link {
        font-size: 18px;
        padding: 10px;
    }

    .verma-phone-link {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .hamburger {
        display: flex !important;
        order: 3;
        margin-left: 0;
    }

    /* Ensure mobile toggle is always visible */
    .verma-container {
        position: relative;
        justify-content: flex-start;
    }

    .verma-menu {
        position: fixed;
        top: 0;
        color: #000000;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100%;
        background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 4rem 1.5rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .verma-menu.active {
        right: 0 !important;
        display: flex !important;
    }

    .verma-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ff7f35 0%, #f26612 50%, #ee5f10 100%);
    }

    .verma-menu::after {
        content: 'Verma Accounting';
        position: absolute;
        top: 1rem;
        left: 2rem;
        color: white;
        font-size: 1.2rem;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .verma-link {
        width: 100%;
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
        font-weight: 600;
        color: #051e67;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
        position: relative;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .verma-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ff7f35;
        transform: translateX(8px);
    }

    .verma-link:last-child {
        border-bottom: none;
    }

    .verma-submenu {
        width: 100%;

    }

    .verma-submenu-items {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        box-shadow: none;

        margin: 0;
        border-radius: 0;
        padding: 0;
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .verma-submenu.active .verma-submenu-items,
    .verma-submenu-items.show {
        opacity: 1;
        visibility: visible;
        max-height: 400px;
        transform: translateY(0);
    }

    .verma-submenu-link {
        padding: 1rem 3rem;
        font-size: 1rem;
        font-weight: 500;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        transition: all 0.3s ease;
    }

    .verma-submenu-link:hover {
        background: rgba(255, 127, 53, 0.2);
        color: #ff7f35;
        transform: translateX(12px);
        padding-left: 4rem;
    }

    .verma-submenu-link::before {
        content: '→';
        position: absolute;
        left: 2rem;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
    }

    .verma-submenu-link:hover::before {
        opacity: 1;
        transform: translateX(0);
    }

    .verma-arrow {
        transition: transform 0.3s ease;
        font-size: 0.8rem;
    }

    .verma-submenu.active .verma-arrow {
        transform: rotate(180deg);
    }

    .verma-contact {
        display: none;
    }

    .verma-container {
        padding: 1rem;
        position: relative;
    }
}

@media (max-width: 480px) {
    .verma-container {
        padding: 0.75rem;
    }

    .verma-logo-img {
        height: 40px;
    }

    .verma-menu {
        padding: 4rem 1.5rem 2rem;
    }

    .verma-link {
        font-size: 18px;
        padding: 10px;
    }

    .verma-submenu-link {
        padding: 0.625rem 1.25rem;
        font-size: 15px;
    }

    .verma-contact {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.375rem;
    }

    .verma-contact-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Ensure first section has proper spacing */
.hero-section {
    margin-top: 0;
}

/* Responsive margin adjustments */
@media (max-width: 1024px) {
    .main-content {
        margin-top: 75px;
    }
}

@media (max-width: 768px) {
    .main-content {
        margin-top: 70px;
    }
}

@media (max-width: 480px) {
    .main-content {
        margin-top: 65px;
    }
}

/* Hero Section */
.hero-section {
    color: white;
    padding: 2rem 0rem;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
}

/* Hero Background Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
    z-index: 0;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(0 0 0 / 66%), rgb(0 2 7 / 79%));
    z-index: 1;
}

/* Hero Slider Navigation Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.hero-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-slider-dots .dot:hover,
.hero-slider-dots .dot.active {
    background: #3b82f6;
    border-color: white;
    transform: scale(1.2);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 200px;
}

.hero-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-stats .stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
}

.hero-stats .stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* Rating Display */
.rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stars i {
    color: #ffd700;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.rating-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgb(255, 255, 255);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.rating-text span {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.hero-text {
    grid-column: 1;
}

.hero-visual {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modern Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-badge i {
    color: #fbbf24;
    font-size: 1rem;
}

/* Modern Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.title-highlight {
    background: linear-gradient(180deg, #ff9a54 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ff5e0094;
    background-clip: text;
    display: inline-block;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 150px;
}

.rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;

}


.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
}

.stat-highlight:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}


.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    text-align: center;
}

/* Modern CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.bg-white::before {
    content: '';
    position: absolute;
    background: rgb(255, 255, 255);

}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    border-color: #1e40af;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.cta-button i {
    font-size: 1.1rem;
}

/* Quick Contact */
.quick-contact {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-item i {
    color: #fbbf24;
    font-size: 1rem;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #fbbf24;
}

/* Visual Card */
.visual-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.visual-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    margin-bottom: 2rem;
    text-align: center;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    color: #10b981;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.feature-item span {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-stats {
    display: flex;

    gap: 2rem;
    padding: 2rem;

    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.hero-stats .stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-item p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.cta-button {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 1rem 2rem;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button.orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    border: 2px solid #f97316;
}

.cta-button.orange:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    border-color: #ea580c;
    transform: translateY(-2px);
}

.common-section .cta-button {
    padding: 0.5rem 1rem !important;

}

@media (max-width: 768px) {
    .common-section .cta-button {
        padding: 0.5rem 1rem !important;
        max-width: 100%;
        text-align: center;
    }
}


.cta-button:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    border-color: #3159c3;
    transform: translateY(-2px);

}

/* Services Section */
.services-section {
    background:
        linear-gradient(rgba(20, 30, 50, 0.7), rgba(20, 30, 50, 0.7)),
        url("../images/service-bg.jpg") no-repeat center center;
    background-color: #102562;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 3rem 0rem;
    text-align: left;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.services-section * {
    color: white !important;
}

.section-title {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

h1.section-title {
    font-size: 2.5rem;
}

h2.section-title {
    font-size: 1.95rem;
}

h3.section-title {
    font-size: 2rem;
}

h4.section-title {
    font-size: 1.5rem;
}

h5.section-title {
    font-size: 1.25rem;
}

h6.section-title {
    font-size: 1rem;
}

.img-box {
    padding: 5px;
    background-color: #fff;
    border-radius: 15px;
    height: 100%;
}

.img-box:has(.resource-image-placeholder) {
    background-color: transparent;
}

@media (max-width: 991px) {
    .img-box {
        margin-bottom: 20px;
    }
}

.img-box>img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-box .resource-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 10px;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
}

/* About Section */
.about-section {
    background: #f8fafc;
    padding: 4rem 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefits-list li {
    color: #059669;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-item h4 {
    color: #3b82f6;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

/* Mission Section */
.mission-section {
    padding: 4rem 2rem;
    background: white;
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mission-content p {
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.feature-item h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 4rem 2rem;
    background: #f8fafc;
}

.team-section h2 {
    text-align: center;
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.team-icon i {
    font-size: 1.5rem;
    color: white;
}

.team-card h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 4rem 2rem;
    background: white;
}

.values-section h2 {
    text-align: center;
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    transition: transform 0.3s ease;
}

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

.value-item h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 1.2rem;
    color: #fbbf24;
}

/* Page Header */
.page-header {
    background: white;
    color: #1e3a8a;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.widget-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
}

/*.widget-container::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 250px;*/
/*    height: 50px;*/
/*    background: rgb(255, 255, 255);*/
/*    z-index: 10;*/
/*    bottom: 15px;*/
/*    left: 50%;*/
/*    right: 50%;*/
/*    transform: translateX(-45%);*/
/*}*/

/*.widget-container::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    height: 4px;*/
/*    background: white;*/
/*    z-index: 1;*/
/*}*/

/* Service Items */
.service-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7f35 0%, #f26612 50%, #ee5f10 100%);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-subtitle {
    font-size: 1.2rem;
    color: #ff7f35;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-item h2 {
    color: #1a2d8b;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1a2d8b 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 127, 53, 0.2);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #f36b13;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 127, 53, 0.15);
    border-color: rgb(255 93 0 / 53%);
}

.feature-item h4 {
    color: #1a2d8b;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.feature-item p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Service Item Specific Styling */
.service-item#bookkeeping::before {
    background: linear-gradient(90deg, #10b981 0%, #059669 50%, #047857 100%);
}

.service-item#accounting::before {
    background: linear-gradient(90deg, #3b82f6 0%, #1e40af 50%, #1e3a8a 100%);
}

.service-item#payroll::before {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
}

.service-item#personal-tax::before {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
}

.service-item#corporate-tax::before {
    background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
}

.service-item#business-registration::before {
    background: linear-gradient(90deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%);
}

/* Service Item Icons */
.service-item h2::before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-right: 1rem;
    vertical-align: middle;
    border-radius: 12px;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
}

.service-item#bookkeeping h2::before {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z'/%3E%3C/svg%3E");
}

.service-item#accounting h2::before {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
}

.service-item#payroll h2::before {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}

.service-item#personal-tax h2::before {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z'/%3E%3C/svg%3E");
}

.service-item#corporate-tax h2::before {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E");
}

.service-item#business-registration h2::before {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z'/%3E%3C/svg%3E");
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Contact Page Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}


.contact-info h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

a:has(.contact-item) {
    text-decoration: none;
    color: #1f3a8a;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.contact-item .contact-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-details h4 {
    color: #1e3a8a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1rem;
    margin-bottom: 0;
}

.contact-details a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #1e3a8a;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Override Bootstrap form styles */
.contact-form .form-group {
    margin-bottom: 1.5rem !important;
}

.contact-form .form-group label {
    display: block !important;
    margin-bottom: 0.5rem !important;
    font-weight: 600 !important;
    color: #1e3a8a !important;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100% !important;
    padding: 0.75rem !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 6px !important;
    font-size: 1rem !important;
    transition: border-color 0.3s ease !important;
    background: white !important;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

.contact-form .form-group textarea {
    height: 120px !important;
    resize: vertical !important;
}

.submit-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Enhanced Homepage Styles */
.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #4a5568;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

@media (max-width: 991px) {
    .verma-container .cta-button.orange {
        display: flex;
        margin-left: auto;
        margin-right: 0.75rem;
        order: 2;
        padding: 0.5rem .5rem;
    }

    .verma-container .cta-button.orange.phone-icon-button {
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 40px;
    }

    .verma-container .cta-button.orange.phone-icon-button i {
        font-size: 1.2rem;
        margin: 0;
    }
}

.cta-button.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    border-color: #1e40af;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: #3b82f6;
    padding: 1rem 2rem;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.feature-badge i {
    color: #3b82f6;
    font-size: 1.1rem;
}

.feature-badge span {
    font-weight: 600;
    color: #1e3a8a;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.section-header h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Enhanced Service Cards */
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #1e3a8a;
    gap: 0.75rem;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 5rem 0;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.benefit-content p {
    color: #64748b;
    line-height: 1.6;
}



.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}


.stat-label {
    color: #64748b;
    font-weight: 600;
}

/* Service Areas Section */
.service-areas-section {
    background: white;
    padding: 5rem 0;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.area-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.area-card:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.area-card h3 {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.area-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Key Message Styling */
.key-message {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #3b82f6;
    backdrop-filter: blur(10px);
}

.key-message h2 {
    color: #1e3a8a;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background: #f8fafc;
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question i {
    color: #ea580c;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8fafc;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    padding: 1rem 2rem 1.5rem 2rem;
}

.faq-item.active .faq-question {
    background: #ffb58c63;
}

.faq-item.active .faq-question i {
    color: #1f3a8a;
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

/* Industry Stats Section */
.industry-stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    position: relative;
}

.stats-header {
    text-align: center;
    margin-bottom: 2rem;
}

.stats-header h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stats-header p {
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff7f35 0%, #ff6001 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff5d00;
    line-height: 1;
}

.stat-number-icon {
    font-size: 2.5rem;
    color: #ff5d00;
    font-weight: 700;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #24479f;
    margin-bottom: 1rem;
}

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

.stats-cta {
    text-align: center;
}

.stats-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25479f 0%, #3e6eeb 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.stats-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    color: white;
    text-decoration: none;
}

.stats-cta .cta-button i {
    transition: transform 0.3s ease;
}

.stats-cta .cta-button:hover i {
    transform: translateX(3px);
}

/* Responsive adjustments for industry stats */
@media (max-width: 768px) {
    .industry-stats-section {
        padding: 4rem 0;
    }

    .stats-header h2 {
        font-size: 2rem;
    }

    .stats-header p {
        font-size: 1.1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

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

    .stat-number-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .industry-stats-section {
        padding: 3rem 0;
    }

    .stats-header h2 {
        font-size: 1.75rem;
    }

    .stats-header p {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

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

    .stat-number-icon {
        font-size: 1.5rem;
    }

    .stats-cta .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    position: relative;
}

.contact-form-content h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-form-content p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-info .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 127, 53, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.contact-info .contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7f35 0%, #f26612 50%, #ee5f10 100%);
}

.contact-info .contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 127, 53, 0.15);
    border-color: rgba(255, 127, 53, 0.3);
}

.contact-info .contact-item i {
    background: linear-gradient(135deg, #ff7f35 0%, #f26612 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(255, 127, 53, 0.3);
    transition: all 0.3s ease;
}

.contact-info .contact-item:hover i {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 127, 53, 0.4);
}

.contact-info .contact-item h4 {
    color: #1a2d8b;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info .contact-item a,
.contact-info .contact-item span {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.contact-info .contact-item a:hover {
    color: #ff7f35;
    transform: translateY(-2px);
}

.calendly-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    height: 630px;
    overflow: hidden;
}

.calendly-inline-widget {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Responsive adjustments for contact form section */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 4rem 0;
    }

    .contact-form-content h2 {
        font-size: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .contact-info .contact-item {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .contact-info .contact-item i {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .contact-info .contact-item h4 {
        font-size: 1.1rem;
    }

    .calendly-container {
        padding: 1rem;
        height: 500px;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 3rem 0;
    }

    .contact-form-content h2 {
        font-size: 1.75rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-info .contact-item {
        padding: 1.25rem;
        border-radius: 12px;
        gap: 0.75rem;
    }

    .contact-info .contact-item i {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .contact-info .contact-item h4 {
        font-size: 1rem;
    }

    .contact-info .contact-item a,
    .contact-info .contact-item span {
        font-size: 0.9rem;
    }

    .calendly-container {
        height: 450px;
    }
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-buttons.left {
    justify-content: left;
}



.cta-section .cta-button.primary:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    border-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.cta-section .cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section .cta-button.secondary:hover {
    background: white;
    color: #1e3a8a;
}

.cta-section .contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-section .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
}

.cta-section .contact-item i {
    font-size: 1.2rem;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info-card,
.contact-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.contact-info-card h2,
.contact-form-card h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 127, 53, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff7f35 0%, #f26612 100%);
    border-radius: 0 4px 4px 0;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 127, 53, 0.15);
    border-color: rgba(255, 127, 53, 0.3);
}

.contact-item .contact-icon {
    background: linear-gradient(135deg, #ff7f35 0%, #f26612 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(255, 127, 53, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 127, 53, 0.4);
}

.contact-details h4 {
    color: #1e3a8a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {

    font-size: 1rem;
    margin-bottom: 0;
}

.contact-details a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #1e3a8a;
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Enhanced form styles - override Bootstrap */
.contact-form .form-group {
    display: flex !important;
    flex-direction: column !important;
}

.contact-form .form-group label {
    color: #374151 !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    font-size: 0.95rem !important;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    padding: 0.75rem 1rem !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    background: white !important;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

.contact-form .form-group textarea {
    min-height: 120px !important;
    resize: vertical !important;
}

.submit-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Business Hours Section */
.business-hours-section {
    background: white;
    padding: 4rem 0;
    text-align: center;
}

.business-hours-section h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hours-description {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hours-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.hours-card:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hours-icon {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.hours-card h4 {
    color: #1e3a8a;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hours-card p {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Responsive Design for Homepage */
@media (max-width: 768px) {
    .hero-cta {
        align-items: center;
    }

    .hero-features {
        margin-top: 1.5rem;
    }

    .feature-badge {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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


    .service-areas-grid {
        grid-template-columns: 1fr;
    }

    .key-message h2 {
        font-size: 1.5rem;
    }

    .faq-container {
        padding: 0 1rem;
    }

    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1rem 1.5rem;
    }

    .cta-buttons {

        align-items: center;
    }

    .cta-section .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 16px;
    }

    .contact-item .contact-icon {
        margin: 0 auto;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .business-hours-section h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

/* Footer Styles */
/* Modern Footer Styles */
.main-footer {
    font-family: "Roboto", Arial, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316 0%, #3b82f6 50%, #f97316 100%);
}

.footer-top {
    padding: 4rem 0 3rem;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

/* Footer Brand Section */
.footer-brand {
    padding-right: 1rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 100px;
    width: auto;
}

.footer-description {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-social a:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

/* Footer Headings */
.footer-heading {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    color: #f97316;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.footer-contact li i {
    width: 40px;
    height: 40px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97316;
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-contact li div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-contact strong {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-contact span,
.footer-contact a {
    color: #cbd5e1;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #f97316;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 320px;
        max-width: 90vw;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        padding: 0;
        margin-top: 0;
    }

    .mobile-menu-header {
        background: #f8fafc;
        padding: 1rem;
        padding-top: calc(1rem + env(safe-area-inset-top));
        border-bottom: 1px solid #e2e8f0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-shrink: 0;
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .mobile-menu-logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .mobile-menu-logo a {
        display: inline-block;
        text-decoration: none;
        transition: transform 0.3s ease;
    }

    .mobile-menu-logo a:hover {
        transform: scale(1.05);
    }

    .mobile-menu-logo img {
        height: 35px;
        width: auto;
    }

    .mobile-menu-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #64748b;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 4px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }

    .mobile-menu-close:hover {
        background: rgba(249, 115, 22, 0.1);
        color: #f97316;
        transform: scale(1.1);
    }

    .mobile-menu-close i {
        font-size: 1.2rem;
        font-weight: bold;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid #f1f5f9;
        text-align: center;
        font-size: 1rem;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-dropdown {
        position: relative;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        border-radius: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .nav-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
    }

    .dropdown-item {
        padding: 0.75rem 1.5rem;
        border-left: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-contact {
        display: none;
    }

    .hero-section {
        min-height: 75vh;
        padding: 2rem 1rem;
        background-attachment: scroll;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

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

    .hero-description {
        font-size: 1.1rem;
    }

    .trust-indicators {
        gap: 1.5rem;
        margin: 2rem 0;
        justify-content: center;
    }

    .trust-item {
        min-width: 140px;
    }


    .stars i {
        font-size: 1rem;
    }

    .rating-text {
        font-size: 2rem;
    }

    .hero-cta {
        justify-content: center;
        gap: 1rem;
    }

    .quick-contact {
        justify-content: center;
        gap: 1.5rem;
    }

    .visual-card {
        padding: 1.5rem;
    }

    .feature-list {
        gap: 1rem;
    }

    .feature-item {
        padding: 0.75rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text {
        grid-column: 1;
        text-align: center;
    }

    .hero-visual {
        grid-column: 1;
        order: -1;
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
        text-align: center;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .hero-stats {
        flex-direction: row;
        gap: 1rem;
        padding: 1rem;
    }

    .hero-stats .stat-item {
        flex: 1;
        padding: 0.75rem;
    }

    .hero-stats .stat-item h3 {
        font-size: 1.5rem;
    }

    .hero-stats .stat-item p {
        font-size: 0.85rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        flex-direction: row;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-item h4 {
        font-size: 2rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .page-header p {
        font-size: 1rem;
    }

    .service-item {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 16px;
    }

    .service-item h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .service-item h2::before {
        width: 40px;
        height: 40px;
        margin-right: 0.75rem;
        background-size: 20px;
    }

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

    .feature-item {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    /* Enhanced Footer Responsive Design */
    .footer-top {
        padding: 3rem 0 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-description {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        padding: 0 1rem;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-links li {
        margin-bottom: 0.25rem;
    }

    .footer-links a {
        font-size: 1rem;
        display: block;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: #f97316;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem;
    }

    .logo-image {
        height: 40px;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.75rem;
    }

    .dropdown-item {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }

    .mobile-menu-toggle {
        padding: 0.4rem;
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }

    .hero-section {
        min-height: 75vh;
        padding: 1.5rem 0.75rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

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

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .trust-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .rating-display,
    .stat-highlight {
        padding: 1rem;
    }



    .stars i {
        font-size: 0.9rem;
    }

    .rating-text {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }

    .quick-contact {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .visual-card {
        padding: 1.25rem;
    }

    .feature-list {
        gap: 0.75rem;
    }

    .feature-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .feature-item i {
        font-size: 1rem;
    }

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

    .service-card h3 {
        font-size: 1.25rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item h4 {
        font-size: 1.75rem;
    }

    .benefits-list li {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .service-item {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .service-item h2 {
        font-size: 1.5rem;
    }

    .service-item h2::before {
        width: 35px;
        height: 35px;
        margin-right: 0.5rem;
        background-size: 18px;
    }

    .feature-item {
        padding: 1.25rem;
        border-radius: 10px;
    }

    .feature-item h4 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    /* Enhanced Small Screen Footer */
    .footer-top {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-brand {
        grid-column: 1;
        margin-bottom: 0.5rem;
    }

    .footer-logo img {
        height: 60px;
    }

    .footer-heading {
        font-size: 1.05rem;
        margin-bottom: 1rem;
    }

    .footer-heading::after {
        width: 30px;
        height: 2px;
    }

    .footer-links li {
        margin-bottom: 0.65rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-contact li {
        margin-bottom: 1.25rem;
    }

    .footer-contact li i {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .footer-contact strong {
        font-size: 0.9rem;
    }

    .footer-contact span,
    .footer-contact a {
        font-size: 0.85rem;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .footer-bottom {
        padding: 1.25rem 1rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

}

/* Animation for smooth transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

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

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

/* Animation classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.fade-in-scale {
    animation: fadeInScale 0.8s ease-out;
}

.slide-in-up {
    animation: slideInUp 0.8s ease-out;
}

.slide-in-down {
    animation: slideInDown 0.8s ease-out;
}

/* Scroll animation base classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

.scroll-animate-delay-1 {
    transition-delay: 0.1s;
}

.scroll-animate-delay-2 {
    transition-delay: 0.2s;
}

.scroll-animate-delay-3 {
    transition-delay: 0.3s;
}

.scroll-animate-delay-4 {
    transition-delay: 0.4s;
}

.scroll-animate-delay-5 {
    transition-delay: 0.5s;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }


    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1.25rem;
        border-radius: 12px;
    }

    .contact-item .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

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

    .hours-item {
        padding: 1.5rem;
    }
}

.section-container {
    padding: 1.5rem 0.75rem !important;
}

.section-container-sm {
    padding: 1rem 0.75rem !important;
}

.section-container-lg {
    padding: 2.5rem 0.75rem !important;
}

.content-container,
.content-container-sm,
.content-container-lg {
    padding: 0 0.75rem !important;
}



.services {
    text-align: center;
    background-color: #00238c0d;
    border-radius: 15px;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.19);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10.3px);
    -webkit-backdrop-filter: blur(10.3px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.services:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.services *:last-child {
    margin-bottom: 0;
}

.services.justify-start:has(.services-description) {
    text-align: left;
}

.services-thumbnail {
    display: block;
    padding: 5px 5px 0 5px;
}

.common-section {
    position: relative;
    z-index: 0;
    padding-top: 70px;
    padding-bottom: 70px;
}

.py-70 {
    position: relative;
    z-index: 0;
    padding-top: 70px;
    padding-bottom: 70px;
}

.common-section:nth-child(even):before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f8fafc;
    border-bottom: 1px solid #f8fafc;
    z-index: -1;
}


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

.ul-list>li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.ul-list>li::before {
    content: '→';
    position: absolute;
    left: 0;

    color: #f97316;
    font-weight: 700;
    font-size: 1rem;
}

.resource-detail-list .sub-ul-list {
    margin-left: 0;
    padding-left: 0;
    list-style-type: none;
    padding-left: 20px;
    padding-top: 10px;
}

.resource-detail-list .sub-ul-list>li::before {
    content: '☞';
    position: absolute;
    left: 0;
    color: #ef600f;
    font-weight: 700;
    font-size: 1rem;


}

.count-auto {
    column-count: auto
}

.count-2 {
    column-count: 2
}

.count-3 {
    column-count: 3
}

.count-4 {
    column-count: 4
}

@media (min-width: 768px) {
    .count-md-auto {
        column-count: auto
    }

    .count-md-2 {
        column-count: 2
    }

    .count-md-3 {
        column-count: 3
    }

    .count-md-4 {
        column-count: 4
    }
}

@media (min-width: 992px) {
    .count-lg-auto {
        column-count: auto
    }

    .count-lg-2 {
        column-count: 2
    }

    .count-lg-3 {
        column-count: 3
    }

    .count-lg-4 {
        column-count: 4
    }
}

@media (min-width: 1200px) {
    .count-xl-auto {
        column-count: auto
    }

    .count-xl-2 {
        column-count: 2
    }

    .count-xl-3 {
        column-count: 3
    }

    .count-xl-4 {
        column-count: 4
    }
}

.services.justify-start:has(.services-description) .services-thumbnail {
    padding: 0;
}

.services-thumbnail:last-child {
    padding-bottom: 10px;
}

a.services-thumbnail:last-child {
    padding-bottom: 15px;
}

.services-thumbnail .thumb {
    width: 100%;
    border-radius: 10px;
}

.services-thumbnail .icon {
    width: 60px;
    height: 60px;
    padding: 10px;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.services.justify-start:has(.services-description) .services-thumbnail .icon {
    margin-left: 30px;
    padding: 0;
}

.services-title {
    display: block;
    font-size: 22px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 0;
    position: relative;
}

.services.justify-start:has(.services-description) .services-title {
    padding-left: 20px;
    padding-right: 20px;
}

.services-thumbnail .icon+.services-title:before,
.services-thumbnail .icon+.services-title:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.services-thumbnail .icon+.services-title:before {
    width: 70px;
    height: 70px;
    top: -85px;
    background-color: #fff;
}

.services-thumbnail .icon+.services-title:after {
    width: 80px;
    height: 80px;
    top: -90px;
    background-color: transparent;
    border: 5px solid #ffffffbf;
}

.services.justify-start:has(.services-description) .icon+.services-title:before {
    left: 25px;
    transform: none;
    border-radius: 5px;
}

.services.justify-start:has(.services-description) .icon+.services-title:after {
    left: 20px;
    transform: none;
    border-radius: 10px;
}

a.services-thumbnail,
a.services-thumbnail:visited {
    color: #1f3a8a;
    text-decoration: underline !important;
    text-underline-offset: 5px;
    transition: all 0.5s;
}

a.services-thumbnail:hover {
    color: #4868c9;
    text-decoration-color: #4868c9;
}

a .services-title:hover {
    text-decoration: none;
}

.services-description {
    padding: 0 20px 20px 20px;
    margin-top: 10px;
}

/* Partner Section Styles */
.partner-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

/* Reviews Section Styles */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.reviews-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-section .section-header h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reviews-section .section-subtitle {
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.reviews-container {
    max-width: 100%;
    height: 600px;
    overflow: visible;
}

.reviews-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Responsive adjustments for reviews section */
@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }

    .reviews-section .section-header h2 {
        font-size: 2rem;
    }

    .reviews-section .section-subtitle {
        font-size: 1.1rem;
    }

    .reviews-container {
        padding: 1.5rem;
        height: 500px;
    }
}

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

    .reviews-section .section-header h2 {
        font-size: 1.75rem;
    }

    .reviews-container {
        padding: 1rem;
        height: 450px;
    }
}

.partner-grid {
    overflow: hidden;
    margin-top: 40px;
    width: 100%;
    position: relative;
}

.partner-grid::before,
.partner-grid::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 2;
    pointer-events: none;
}

.partner-grid::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, transparent);
}

.partner-grid::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa, transparent);
}

.partner-track {
    display: flex;
    gap: 30px;
    align-items: center;
    animation: slideRightToLeft 20s linear infinite;
    width: fit-content;
}

@keyframes slideRightToLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    flex-shrink: 0;
    width: 200px;
    height: 120px;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Partner dots navigation */
.partner-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot:hover {
    background-color: #717171;
}

.dot.active {
    background-color: #007bff;
}

.partner-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-item:hover img {
    transform: scale(1.1);
}

/* Responsive adjustments for partner section */
@media (max-width: 768px) {
    .partner-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }

    .partner-item {
        padding: 15px;
        height: 100px;
    }

    .partner-item img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .partner-item {
        padding: 10px;
        height: 80px;
    }

    .partner-item img {
        max-height: 50px;
    }
}

/* Contact Form Styles */
.contact-form-section h3 {
    color: #1e3a8a;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

#my-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    #my-form {
        max-width: 100%;
    }
}

#my-form label {
    display: block;
    color: #374151;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

#my-form label:first-child {
    margin-top: 0;
}

#my-form input,
#my-form textarea,
#my-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #f3702073;
    border-radius: 8px;
    font-size: 1rem;
    color: #374151;
    background: #fbfafa;
    transition: all 0.3s ease;
    box-sizing: border-box;
    margin-bottom: 1rem;
}

#my-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    cursor: pointer;
}

#my-form input:focus,
#my-form textarea:focus,
#my-form select:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#my-form input:hover,
#my-form textarea:hover,
#my-form select:hover {
    border-color: #f37325;
    background: white;
}

#my-form select option {
    padding: 0.5rem;
    background: white;
    color: #374151;
}

#my-form textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

#my-form-button {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

#my-form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
}

#my-form-button:active {
    transform: translateY(0);
}

#my-form-status {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    display: none;
}

#my-form-status:not(:empty) {
    display: block;
}

#my-form-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#my-form-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form Loading State */
#my-form-button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#my-form-button:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Responsive Form Design */
@media (max-width: 768px) {
    .contact-form-section h3 {
        font-size: 1.5rem;
    }

    #my-form input,
    #my-form textarea,
    #my-form select {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    #my-form select {
        padding-right: 2.25rem;
        background-position: right 0.75rem center;
    }

    #my-form-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    .contact-form-section h3 {
        font-size: 1.3rem;
    }

    #my-form input,
    #my-form textarea,
    #my-form select {
        padding: 0.625rem;
        font-size: 0.9rem;
    }

    #my-form select {
        padding-right: 2rem;
        background-position: right 0.625rem center;
    }

    #my-form-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* CTA Appointment Section */
.cta-appointment-section {
    background: linear-gradient(135deg, #1a2d8b 0%, #051e67 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.cta-appointment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-appointment-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-text {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    flex: 1;
}

.cta-prefix {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

#typing-text {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
    position: relative;
    display: inline-block;
}

#typing-text::after {
    content: '|';
    animation: blink 1s infinite;
    color: #fbbf24;
    font-weight: 300;
    margin-left: 2px;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.appointment-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ee5f10 0%, #f26612 100%);
    /* border: 2px solid #3b82f6; */
    border-radius: 12px;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgb(241 100 17 / 43%);
}

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

.appointment-button:hover::before {
    left: 100%;
}

.appointment-button:hover {
    background: linear-gradient(135deg, #ff853e 0%, #f48641 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgb(244 133 65 / 47%);
}

.appointment-button i {
    font-size: 1.2rem;
    color: #ffffff;
}

/* Typing Animation */
.typing-animation {
    animation: typing 2s steps(20, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: #fbbf24;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-appointment-section {
        padding: 2rem 0;
    }

    .cta-appointment-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .cta-text {
        gap: 0.3rem;
        justify-content: center;
    }

    .cta-prefix {
        font-size: 1.5rem;
    }

    #typing-text {
        font-size: 1.25rem;
    }

    .appointment-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-appointment-section {
        padding: 1.5rem 0;
    }

    .cta-prefix {
        font-size: 1.1rem;
    }

    #typing-text {
        font-size: 1.1rem;
    }

    .appointment-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ========================================
   HORIZONTAL OVERFLOW FIX
   ======================================== */

/* Prevent horizontal overflow */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Ensure all containers respect viewport width */
* {
    box-sizing: border-box;
}

/* Fix for mobile menu causing overflow */
@media (max-width: 991px) {
    .verma-menu {
        right: -100%;
        width: 100%;
        max-width: 350px;
    }

    .verma-menu.active {
        right: 0;
    }
}

/* Fix for animation elements that might cause overflow */
.scroll-animate-left,
.scroll-animate-right {
    overflow: hidden;
}



/* Specific fix for hero section */
.hero-section {
    overflow-x: hidden;
}

/* Fix for any fixed positioned elements */


@media screen and (max-width: 992px) {
    .verma-header {
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* ========================================
   RESPONSIVE TYPOGRAPHY FOR HEADINGS
   ======================================== */

/* Medium screens (768px and below) */
@media (max-width: 768px) {

    /* Main headings */
    h1,
    .hero-title,
    .hero-text h1,
    .page-header h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }

    h2,
    .section-title,
    .service-item h2,
    .mission-content h2,
    .team-section h2,
    .values-section h2,
    .contact-section h2,
    .cta-section h2,
    .section-header h2 {
        font-size: 2rem !important;
        line-height: 1.3;
    }

    h3,
    .service-card h3,
    .about-text h3,
    .feature-item h3,
    .team-card h3,
    .value-item h3,
    .contact-form h2 {
        font-size: 1.5rem !important;
        line-height: 1.4;
    }

    h4,
    .feature-item h4,
    .contact-details h4 {
        font-size: 1.25rem !important;
        line-height: 1.4;
    }

    h5,
    .service-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.4;
    }

    h6 {
        font-size: 1rem !important;
        line-height: 1.4;
    }

    /* Hero section specific */
    .hero-stats .stat-item h3 {
        font-size: 2rem !important;
    }

    .stat-item h4 {
        font-size: 2rem !important;
    }

    /* Contact info headings */
    .contact-info h2 {
        font-size: 1.75rem !important;
    }

    /* Mission content */
    .mission-content h2 {
        font-size: 2rem !important;
    }

    .mission-content p {
        font-size: 1.1rem !important;
    }

    /* Service items */
    .service-item h2 {
        font-size: 2rem !important;
    }

    .service-item p {
        font-size: 1rem !important;
    }

    /* Feature items */
    .feature-item h3 {
        font-size: 1.4rem !important;
    }

    .feature-item h4 {
        font-size: 1.1rem !important;
    }

    /* Team cards */
    .team-card h3 {
        font-size: 1.4rem !important;
    }

    /* Value items */
    .value-item h3 {
        font-size: 1.4rem !important;
    }

    /* Contact form */
    .contact-form h2 {
        font-size: 1.75rem !important;
    }

    /* CTA sections */
    .cta-section h2 {
        font-size: 2rem !important;
    }

    /* Section headers */
    .section-header h2 {
        font-size: 2rem !important;
    }

    .section-subtitle {
        font-size: 1.1rem !important;
    }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {

    /* Extra small screens - further reduced sizes */
    h1,
    .hero-title,
    .hero-text h1,
    .page-header h1 {
        font-size: 2rem !important;
        line-height: 1.1;
    }

    h2,
    .section-title,
    .service-item h2,
    .mission-content h2,
    .team-section h2,
    .values-section h2,
    .contact-section h2,
    .cta-section h2,
    .section-header h2 {
        font-size: 1.75rem !important;
        line-height: 1.2;
    }

    h3,
    .service-card h3,
    .about-text h3,
    .feature-item h3,
    .team-card h3,
    .value-item h3,
    .contact-form h2 {
        font-size: 1.3rem !important;
        line-height: 1.3;
    }

    h4,
    .feature-item h4,
    .contact-details h4 {
        font-size: 1.1rem !important;
        line-height: 1.3;
    }

    h5,
    .service-subtitle {
        font-size: 1rem !important;
        line-height: 1.3;
    }

    h6 {
        font-size: 0.95rem !important;
        line-height: 1.3;
    }

    /* Hero section specific */
    .hero-stats .stat-item h3 {
        font-size: 1.75rem !important;
    }

    .stat-item h4 {
        font-size: 1.75rem !important;
    }

    /* Contact info headings */
    .contact-info h2 {
        font-size: 1.5rem !important;
    }

    /* Mission content */
    .mission-content h2 {
        font-size: 1.75rem !important;
    }

    .mission-content p {
        font-size: 1rem !important;
    }

    /* Service items */
    .service-item h2 {
        font-size: 1.75rem !important;
    }

    .service-item p {
        font-size: 0.95rem !important;
    }

    /* Feature items */
    .feature-item h3 {
        font-size: 1.25rem !important;
    }

    .feature-item h4 {
        font-size: 1rem !important;
    }

    /* Team cards */
    .team-card h3 {
        font-size: 1.25rem !important;
    }

    /* Value items */
    .value-item h3 {
        font-size: 1.25rem !important;
    }

    /* Contact form */
    .contact-form h2 {
        font-size: 1.5rem !important;
    }

    /* CTA sections */
    .cta-section h2 {
        font-size: 1.75rem !important;
    }

    /* Section headers */
    .section-header h2 {
        font-size: 1.75rem !important;
    }

    .section-subtitle {
        font-size: 1rem !important;
    }
}

/* Location Section Styles */
.location-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.location-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-text {
    flex: 1;
    padding-right: 30px;
}




.location-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.location-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2c3e50;
    font-weight: 500;
}

.location-feature i {
    color: #ff6b35;
    font-size: 1.2rem;
    width: 20px;
}

.map-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-wrapper {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.canada-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design for Location Section */
@media (max-width: 768px) {
    .location-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .location-text {
        padding-right: 0;
    }

    .location-text h2 {
        font-size: 2rem;
    }

    .location-features {
        align-items: center;
    }

    .location-feature {
        justify-content: center;
    }
}

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

    .location-content {
        gap: 30px;
    }

    .location-text h2 {
        font-size: 1.75rem;
    }

    .location-text p {
        font-size: 1rem;
    }
}

/* Modern Resources Page Styles */

/* Modern Hero Section */
.resources-hero-modern {
    background-image: url('../images/document.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.resources-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 64, 175, 0.75) 50%, rgba(30, 58, 138, 0.85) 100%);
    z-index: 0;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    z-index: 1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.resources-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.resources-hero-content {
    text-align: center;
    color: white;
}



.resources-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.resources-hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(249, 115, 22, 0.5);
}

.hero-stat-item .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Modern Cards Section */
.resources-cards-modern {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.section-header-modern {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.section-header-modern h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header-modern p {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.7;
}

.resources-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 0 auto;

}

.resource-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.resource-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.resource-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
    border-color: #f97316;
}

.resource-card-modern:hover::before {
    opacity: 0.03;
}

.card-icon-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.resource-card-modern .resource-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97316;
    font-size: 1.75rem;
    transition: all 0.4s ease;
    position: relative;
}

.resource-card-modern:hover .resource-card-icon {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;

}

.card-content {
    position: relative;
    z-index: 1;
}

.resource-card-modern .resource-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.resource-card-modern:hover .resource-card-title {
    color: #f97316;
}

.resource-card-modern .resource-card-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 50%;
    color: #64748b;
    transition: all 0.3s ease;
}

.resource-card-modern:hover .card-arrow {
    background: #f97316;
    color: white;
    transform: translateX(5px);
}

.card-arrow i {
    font-size: 0.9rem;
}

/* Modern Responsive Design for Resources Page */
@media (max-width: 991px) {
    .resources-hero-modern {
        padding: 6rem 0 4rem;
        min-height: auto;
    }

    .resources-hero-title {
        font-size: 2.75rem;
    }

    .resources-hero-description {
        font-size: 1.15rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-stat-item .stat-number {
        font-size: 2rem;
    }

    .section-header-modern h2 {
        font-size: 2.25rem;
    }

    .resources-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        padding: 0 1.5rem;
    }

    .resource-card-modern {
        padding: 1.75rem;
    }
}

@media (max-width: 767px) {
    .resources-hero-modern {
        padding: 5rem 0 3rem;
        background-attachment: scroll;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.65rem 1.25rem;
    }

    .resources-hero-title {
        font-size: 2.25rem;
    }

    .resources-hero-description {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 1.5rem;
    }

    .hero-stat-item .stat-number {
        font-size: 1.75rem;
    }

    .hero-stat-item .stat-label {
        font-size: 0.85rem;
    }

    .section-header-modern h2 {
        font-size: 2rem;
    }

    .section-header-modern p {
        font-size: 1.05rem;
    }

    .resources-cards-modern {
        padding: 4rem 0;
    }

    .section-header-modern {
        margin-bottom: 3rem;
    }

    .resources-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 1rem;
    }

    .resource-card-modern {
        padding: 1.75rem 1.5rem;
    }

    .resource-card-modern .resource-card-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .resource-card-modern .resource-card-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .resources-hero-modern {
        padding: 4rem 0 2.5rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .resources-hero-title {
        font-size: 1.85rem;
    }

    .resources-hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1.25rem;
        flex-wrap: wrap;
    }

    .hero-stat-item .stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-item .stat-label {
        font-size: 0.8rem;
    }

    .section-header-modern h2 {
        font-size: 1.75rem;
    }

    .section-header-modern p {
        font-size: 1rem;
    }

    .resources-cards-modern {
        padding: 3rem 0;
    }

    .resource-card-modern {
        padding: 1.5rem 1.25rem;
    }

    .resource-card-modern .resource-card-icon {
        width: 52px;
        height: 52px;
        font-size: 1.35rem;
    }

    .resource-card-modern .resource-card-title {
        font-size: 1.15rem;
    }

    .resource-card-modern .resource-card-description {
        font-size: 0.9rem;
    }

    .card-arrow {
        width: 32px;
        height: 32px;
    }
}

/* Resource Detail Sections - Zig Zag Pattern */
.resource-detail-section {
    padding: 5rem 0;
    background: white;
}

.resource-detail-section:nth-child(even) {
    background: #f8fafc;
}

.resource-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.resource-detail-reverse .resource-detail-wrapper {
    grid-template-columns: 1fr 1fr;
}

.resource-detail-reverse .resource-detail-image {
    order: 2;
}

.resource-detail-reverse .resource-detail-content {
    order: 1;
}

.resource-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-image-placeholder {
    width: 100%;
    max-width: 450px;
    height: 450px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 8rem;
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.resource-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.resource-image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
    animation: shineWave 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes shineWave {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.resource-image-placeholder i {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: resourceFloat 3s ease-in-out infinite;
}

.resource-image-placeholder:hover i {
    transform: scale(1.15) rotate(5deg);
    animation: resourceFloat 3s ease-in-out infinite;
}

@keyframes resourceFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes resourcePulse {

    0%,
    100% {
        box-shadow: 0 20px 60px rgba(249, 115, 22, 0.3);
    }

    50% {
        box-shadow: 0 25px 70px rgba(249, 115, 22, 0.5);
    }
}

.resource-detail-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.resource-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

/* Modern Resource Section Styles */
.common-section {
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
}

/* Full Width Content Layout */
.resource-content-wrapper {
    max-width: 100%;
    width: 100%;
}

.resource-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.resource-icon-inline {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
    animation: iconFloat 3s ease-in-out infinite;
}

.resource-icon-inline:hover {
    animation-play-state: paused;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.5);
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.resource-icon-inline i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.resource-title-wrapper {
    flex: 1;
}

.resource-title-wrapper .section-title {
    margin-bottom: 0.5rem;
}

.resource-title-wrapper .resource-detail-subtitle {
    margin-bottom: 0;
}

.common-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

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

/* Right align left column resource-image-placeholder */
.common-section .col-lg-6:first-child:not(.order-lg-last) .resource-image-placeholder {
    margin-left: auto;
    margin-right: 0;
}

/* Left align right column resource-image-placeholder (when order-lg-last) */
.common-section .col-lg-6.order-lg-last .resource-image-placeholder {
    margin-left: 0;
    margin-right: auto;
}

.resource-detail-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.resource-detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: block;
    column-count: 1;
    column-gap: 0;
}

/* 2-column layout for lists with 6+ items on medium and large screens */
@media (min-width: 768px) {
    .resource-detail-list {
        column-count: 1;
    }

    .resource-detail-list:has(li:nth-child(6)) {
        column-count: 2;
        column-gap: 2rem;
    }
}

@media (min-width: 992px) {
    .resource-detail-list:has(li:nth-child(6)) {
        column-count: 2;
        column-gap: 2.5rem;
    }
}

.resource-detail-list li {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.65;
    padding: 0.4rem 0 0.4rem 1.75rem;
    position: relative;
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 0.4rem;
}

.resource-detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: #10b981;
    font-weight: 700;
    font-size: 1rem;
}

.resource-detail-note {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    border-left: 4px solid #f97316;
    padding: 1.25rem;
    border-radius: 12px;
    margin: 1.25rem 0;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.1);
}

.resource-detail-note strong {
    color: #1e293b;
    font-size: 1.025rem;
    display: block;
    margin-bottom: 0.85rem;
    font-weight: 700;
}

.resource-detail-note ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    column-count: 1;
    column-gap: 0;
}

/* 2-column layout for note lists with 4+ items on medium and large screens */
@media (min-width: 768px) {
    .resource-detail-note ul {
        column-count: 1;
    }

    .resource-detail-note ul:has(li:nth-child(4)) {
        column-count: 2;
        column-gap: 2rem;
    }
}

@media (min-width: 992px) {
    .resource-detail-note ul:has(li:nth-child(4)) {
        column-count: 2;
        column-gap: 2.5rem;
    }
}

/* ul li {
    color: #475569;
    font-size: 0.9rem;
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 0.4rem;
}

ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: #f97316;
    font-weight: 700;
    font-size: 1rem;
} */

.resource-download-button {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    margin-top: 1.5rem;
    width: fit-content;
    border: 2px solid transparent;
}

.resource-download-button:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.2);
}

.resource-download-button i {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.resource-download-button:hover i {
    transform: translateX(4px);
}

/* Responsive Styles for Resource Sections */
@media (max-width: 991px) {
    .resource-detail-subtitle {
        font-size: 1.05rem;
    }

    .common-section {
        padding: 2.5rem 0;
    }
}

@media (max-width: 768px) {
    .resource-header {
        flex-direction: column;
        gap: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .resource-icon-inline {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .resource-title-wrapper .section-title {
        font-size: 1.6rem;
    }

    .resource-detail-subtitle {
        font-size: 1rem;
    }

    .resource-detail-list li {
        font-size: 0.95rem;
    }

    .resource-download-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .common-section {
        padding: 2rem 0;
    }

    .resource-detail-note {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .resource-header {
        gap: 1rem;
        margin-bottom: 1.25rem;
    }

    .resource-icon-inline {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .resource-title-wrapper .section-title {
        font-size: 1.4rem;
    }

    .resource-detail-subtitle {
        font-size: 0.95rem;
    }

    .resource-detail-list li,
    .resource-detail-note ul li {
        font-size: 0.9rem;
        padding: 0.35rem 0 0.35rem 1.5rem;
    }

    .resource-download-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .common-section {
        padding: 1.5rem 0;
    }

    .resource-detail-note {
        padding: 0.875rem;
        margin: 1rem 0;
    }

    .resource-detail-note strong {
        font-size: 0.95rem;
        margin-bottom: 0.65rem;
    }
}

/* From Uiverse.io by JulanDeAlb */