/* Custom CSS for Shuchi Group Website */

/* Root Variables */
:root {
    --primary-color: #d4af37;
    --secondary-color: #1a1a1a;
    --accent-color: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
    --gradient-primary: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    --shadow-light: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-medium: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-heavy: 0 20px 40px rgba(0,0,0,0.2);
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.lead {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 5px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 1000;
    display: block !important;
    visibility: visible !important;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow-light);
}

.navbar-brand {
    font-size: 1.8rem;
    color: var(--secondary-color) !important;
    text-decoration: none;
    display: flex !important;
    align-items: center !important;
    visibility: visible !important;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    background-color: rgb(253, 253, 253);
}

.logo-img {
    object-fit: contain;
    display: block !important;
    visibility: visible !important;
    max-width: 150px;
    height: auto;
}


.navbar-brand img {
    display: block !important;
    visibility: visible !important;
    max-width: 150px !important;
    height: auto !important;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
    display: block !important;
    visibility: visible !important;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Fix dropdown arrow positioning - override underline effect */
.navbar-nav .dropdown-toggle::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--text-dark);
    transition: var(--transition);
    margin-left: 0;
    vertical-align: 0;
    border-bottom: none;
    background: none;
    bottom: auto;
    left: auto;
}

.navbar-nav .dropdown-toggle:hover::after {
    border-top-color: var(--primary-color);
    width: 0;
    height: 0;
}

/* Bootstrap dropdown show state */
.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(180deg);
    border-top-color: var(--primary-color);
}

/* Desktop Navigation Styles */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
    }
    
    .navbar-collapse {
        display: flex !important;
    }
}

/* Mobile Menu Button */
.navbar-toggler {
    background: none;
    border: 2px solid var(--primary-color);
    padding: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    transition: var(--transition);
    visibility: visible !important;
}

.navbar-toggler span {
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.navbar-toggler.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    background: var(--gradient-primary);
}

.mobile-logo {
    height: 40px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

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

.mobile-menu-list li {
    margin: 0;
}

.mobile-menu-link {
    display: block;
    padding: 15px 25px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    border-left: 3px solid transparent;
    font-weight: 500;
}

.mobile-menu-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

/* Mobile Dropdown */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    position: relative;
}

.mobile-dropdown-toggle i {
    float: right;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(248, 249, 250, 0.8);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 300px;
}

.mobile-dropdown-link {
    display: block;
    padding: 12px 25px 12px 50px;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.mobile-dropdown-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    /* Tablet and mobile navigation */
    .navbar-collapse {
        display: none !important;
    }
    
    .navbar-toggler {
        display: flex !important;
    }
    
    /* Mobile menu improvements */
    .mobile-menu-content {
        width: 90%;
        max-width: 400px;
    }
    
    .mobile-menu-link {
        padding: 20px 25px;
        font-size: 1.1rem;
    }
    
    .mobile-dropdown-link {
        padding: 15px 25px 15px 50px;
        font-size: 1rem;
    }
    
    /* Hero section mobile */
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        padding: 12px 20px;
    }
    
    /* Section spacing */
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    /* New section tablet */
    .new-section {
        padding: 60px 0;
    }
    
    .new-logo-container {
        min-height: 300px;
        margin-bottom: 2rem;
    }
    
    .new-content {
        text-align: center;
    }
    
    .new-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .new-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Values section tablet */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .value-title {
        font-size: 1.4rem;
    }
    
    .value-description {
        font-size: 0.95rem;
    }
    
    /* Founder section tablet */
    .founder-content {
        text-align: center;
    }
    
    .founder-image {
        margin-bottom: 2rem;
    }
    
    .founder-name {
        font-size: 2.2rem;
    }
    
    .founder-title {
        font-size: 1.1rem;
    }
    
    .founder-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    /* Tablet specific styles */
    .container {
        padding: 0 15px !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Fix mobile alignment issues */
    body {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        overflow-x: hidden !important;
        text-align: center !important;
    }
    
    html {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }
    
    .col-lg-6, .col-lg-4, .col-lg-3, .col-md-6, .col-md-4, .col-md-3, .col-sm-6, .col-sm-4, .col-sm-3 {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Ensure all content is properly centered */
    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
    
    /* Fix any potential Bootstrap grid issues */
    .container, .container-fluid {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Force all sections to be centered */
    section, .section, [class*="section"] {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }
}

/* Additional mobile fixes for smaller screens */
@media (max-width: 576px) {
    .container {
        padding: 0 10px !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .container-fluid {
        padding: 0 10px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
    
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }
    
    /* Ensure all columns are properly aligned */
    [class*="col-"] {
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Force center alignment for all content */
    body, html {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    /* Reset any potential float issues */
    * {
        float: none !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Grid adjustments */
   /* .col-lg-6 {
        margin-bottom: 2rem;
    }*/
    
    .col-lg-4 {
        margin-bottom: 1.5rem;
    }
    
    /* Button improvements */
    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    /* New section tablet */
    .new-section {
        padding: 60px 0;
    }
    
    .new-logo-container {
        min-height: 300px;
        margin-bottom: 2rem;
    }
    
    .new-content {
        text-align: center;
    }
    
    .new-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .new-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Values section tablet */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .value-title {
        font-size: 1.4rem;
    }
    
    .value-description {
        font-size: 0.95rem;
    }
    
    /* Founder section tablet */
    .founder-content {
        text-align: center;
    }
    
    .founder-image {
        margin-bottom: 2rem;
    }
    
    .founder-name {
        font-size: 2.2rem;
    }
    
    .founder-title {
        font-size: 1.1rem;
    }
    
    .founder-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    /* Mobile specific styles */
    .mobile-menu-content {
        width: 100%;
    }
    
    .mobile-menu-link {
        padding: 18px 25px;
    }
    
    .mobile-dropdown-link {
        padding: 15px 25px 15px 50px;
    }
    
    /* Hero section mobile */
    .hero-section {
        height: 100vh;
        padding: 60px 0 30px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    /* Section adjustments */
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    /* Container padding */
    .container {
        padding: 0 10px;
    }
    
    /* Text adjustments */
    .lead {
        font-size: 1rem;
    }
    
    /* Card adjustments */
    .card {
        margin-bottom: 1.5rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    /* New section mobile */
    .new-section {
        padding: 40px 0;
    }
    
    .new-logo-container {
        min-height: 250px;
        margin-bottom: 2rem;
    }
    
    .new-content {
        text-align: center;
    }
    
    .new-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .new-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Values section mobile */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .value-title {
        font-size: 1.2rem;
    }
    
    .value-description {
        font-size: 0.9rem;
    }
    
    /* Founder section mobile */
    .founder-content {
        text-align: center;
    }
    
    .founder-image {
        margin-bottom: 2rem;
    }
    
    .founder-name {
        font-size: 1.8rem;
    }
    
    .founder-title {
        font-size: 1rem;
    }
    
    .founder-description {
        font-size: 0.9rem;
    }
}

.dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Show dropdown on hover */
.navbar-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.dropdown-item {
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: white;
}

.navbar-toggler {
    border-color: var(--text-dark);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
}

/* Video fallback for older browsers */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(44, 44, 44, 0.6) 100%);
    z-index: -3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 26, 0.7) 100%);
    z-index: -1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    min-height: 2.4em; /* Reserve space for 2 lines */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-title-line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.6s;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.3s;
}

.hero-buttons .btn {
    padding: 11px 25px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    border: 2px solid transparent;
}

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

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-buttons .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-buttons .btn:hover::after {
    width: 200px;
    height: 200px;
}

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

.hero-buttons .btn:hover i {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--gradient-primary);
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    border-color: #ffd700;
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* New Section */
.new-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.new-section .col-lg-5 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.new-logo-container {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.new-logo-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rippleEffect 4s ease-out infinite;
    z-index: 1;
}

.new-logo-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rippleEffect 4s ease-out infinite 2s;
    z-index: 1;
}

.new-logo {
    max-width: 250px;
    height: auto;
    transition: all 0.3s ease;
    animation: logoEntrance 1.5s ease-out, logoFloat 3s ease-in-out infinite 1.5s, logoGlow 2s ease-in-out infinite alternate 1.5s;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
    position: relative;
    z-index: 2;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

.new-logo.loaded {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.new-logo-container:hover .new-logo {
    transform: scale(1.1) rotate(5deg);
    animation-play-state: paused;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
}

/* Logo Animations */
@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-180deg);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1) rotate(-90deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    }
}

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

@keyframes logoRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes logoBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

@keyframes rippleEffect {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* SGAP Style Animation */
@keyframes sgapStyle {
    0% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    }
    25% {
        transform: scale(1.05) rotate(1deg);
        filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.4));
    }
    50% {
        transform: scale(1.1) rotate(0deg);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    }
    75% {
        transform: scale(1.05) rotate(-1deg);
        filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.4));
    }
    100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    }
}

.new-content {
    position: relative;
    z-index: 2;
    background: #fdfcf7;
    padding: 80px 60px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.new-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.new-text {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.new-btn {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.new-btn:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.new-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.new-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.new-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.new-stat-label {
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* What We Do Section */
.what-we-do-section {
    position: relative;
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.what-we-do-header {
    text-align: center;
    margin-bottom: 50px;
}

.what-we-do-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 30px;
    border-radius: 2px;
    position: relative;
}

/* .title-underline::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 4px;
    animation: pulse 2s infinite;
} */

.what-we-do-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}


.what-we-do-card {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
}

.what-we-do-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.what-we-do-card:hover::before {
    left: 100%;
}

.what-we-do-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-color);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.what-we-do-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.what-we-do-card:hover .card-content h3 {
    color: var(--primary-color);
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.what-we-do-card:hover .card-overlay {
    opacity: 1;
}

.what-we-do-footer {
    text-align: center;
}

.promise-text {
    background: white;
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.promise-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.8s ease;
}

.promise-text:hover::before {
    left: 100%;
}

.promise-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.promise-content {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
}

/* Background Elements */
.what-we-do-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.bg-circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.bg-circle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.about-logo-container {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    transition: all 0.3s ease;
}

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

.about-logo-container:hover .about-logo {
    transform: scale(1.05);
}

.about-content {
    position: relative;
    z-index: 2;
    background: #f5f0d8;
    padding: 60px 40px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    position: relative;
    display: inline-block;
}

.about-content h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.about-content .lead {
    position: relative;
    margin-bottom: 2rem;
}

.about-content p {
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.about-stat {
    text-align: center;
    flex: 1;
}

.about-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .btn {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

.about-content .btn:hover::before {
    left: 100%;
}

.about-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: var(--transition);
}

.service-card:hover::before {
    left: 100%;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Founder Section */
.founder-section {
    position: relative;
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}
/* 
.founder-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="%23d4af37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23d4af37" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23d4af37" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23d4af37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
} */

/* Section Header */
.founder-header-section {
    text-align: center;
    margin-bottom: 40px;
}

.founder-section-label {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.founder-section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
}

.founder-section-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.founder-section-underline::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 4px;
    animation: pulse 2s infinite;
}

/* Image Container */
.founder-image-container {
    position: relative;
    text-align: center;
    padding: 20px 0;
}

.founder-image-wrapper {
    position: relative;
    display: inline-block;
}


.founder-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    border: 6px solid white;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.founder-img:hover {
    transform: scale(1.05);
    box-shadow: 0 35px 70px rgba(212, 175, 55, 0.3);
}


.founder-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: badgeFloat 3s ease-in-out infinite;
}

.founder-badge i {
    font-size: 0.8rem;
}


@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* Content Section */
.founder-content {
    padding-left: 60px;
}

.founder-name-section {
    margin-bottom: 30px;
}

.founder-name {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.founder-role {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-description {
    margin-bottom: 40px;
}

.founder-bio {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}


/* Actions */
.founder-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.founder-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-title {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    border-color: var(--primary-color);
}

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

.btn-founder-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: .75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border: 2px solid transparent;
}

.btn-founder-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    color: white;
    border-color: var(--primary-color);
}

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

.btn-founder-primary:hover i {
    transform: translateX(3px);
}

/* Background Elements */
.founder-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.founder-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    animation: founderFloat 10s ease-in-out infinite;
}

.founder-bg-shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.founder-bg-shape-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 3%;
    animation-delay: 4s;
}

.founder-bg-shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 15%;
    animation-delay: 8s;
}

@keyframes founderFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Divisions Section */
.divisions-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Section Header */
.divisions-label {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.divisions-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
}

.divisions-underline {
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.divisions-underline::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 3px;
    animation: pulse 2s infinite;
}

/* Division Cards */
.division-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.division-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

/* Division Card Link */
.division-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

/* Shuchi Gold Hero Buttons */
.hero-buttons-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-buttons-modern .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-buttons-modern .btn-modern-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.hero-buttons-modern .btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: white;
}

.hero-buttons-modern .btn-modern-outline {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.hero-buttons-modern .btn-modern-outline:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-buttons-modern {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons-modern .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Contact Popup Styles */
.contact-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.contact-popup-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: popupSlideIn 0.3s ease-out;
}

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

.contact-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 1px solid #eee;
}

.contact-popup-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-popup-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-popup-close:hover {
    background: #f5f5f5;
    color: #333;
}

.contact-popup-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.btn-cancel,
.btn-submit {
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-cancel {
    background: #f5f5f5;
    color: #666;
}

.btn-cancel:hover {
    background: #e1e1e1;
    color: #333;
}

.btn-submit {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .contact-popup-content {
        width: 95%;
        margin: 20px;
    }
    
    .contact-popup-header,
    .contact-popup-body {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-cancel,
    .btn-submit {
        width: 100%;
    }
    
    /* Mobile padding fixes for all pages */
    .hero-section,
    .hero-section-modern,
    .about-section,
    .about-section-modern,
    .what-we-do-section,
    .founder-section,
    .divisions-section,
    .our-presence-section,
    .testimonial-section,
    .cta-section,
    .cta-section-gold,
    .cta-section-ayurveda,
    .cta-section-jewels,
    .new-section,
    .py-5,
    .py-4,
    .py-3,
    .section,
    .remedies-section,
    .features-section,
    .expertise-section,
    .contact-healthcare-division-section,
    .contact-section,
    .cta-background,
    .cta-background-ayurveda,
    .cta-background-jewels {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    
    /* Specific mobile adjustments for hero sections */
    .hero-section,
    .hero-section-modern {
        min-height: 70vh;
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    
    /* Mobile container adjustments */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Mobile section spacing */
    section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
}

/* Additional Mobile Padding Fix - More Specific */
@media (max-width: 768px) {
    /* Force mobile padding for all sections */
    body .container > .row > div > section,
    body section,
    body .py-5,
    body .py-4,
    body .py-3 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    
    /* Specific page sections */
    .hero-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
        min-height: 70vh !important;
    }
    
    .about-section,
    .new-section,
    .what-we-do-section,
    .founder-section,
    .divisions-section,
    .our-presence-section,
    .testimonial-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    
    /* CTA sections */
    .cta-section,
    .cta-section-gold,
    .cta-section-ayurveda,
    .cta-section-jewels {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    
    /* Division page sections */
    .remedies-section,
    .features-section,
    .expertise-section,
    .contact-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
}

.division-card-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Mobile Padding Override - Force Apply */
@media screen and (max-width: 768px) {
    /* Override all section padding on mobile */
   
    
    /* Hero section specific */
    .hero-section {
        min-height: 70vh !important;
    }
    
    /* Founder actions center on mobile */
    .founder-actions {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 20px !important;
    }
    
    .founder-social {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .founder-social .social-links {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;
    }
    
    .btn-founder-primary {
        margin: 0 auto !important;
    }
    
    /* New section mobile layout */
    .new-section .row {
        flex-direction: column !important;
    }
    
    .new-section .col-lg-5,
    .new-section .col-lg-7 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    
    .new-section .new-content {
        padding: 20px !important;
    }
    
    .new-section .new-stats {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin-bottom: 20px !important;
    }
    
    .new-section .new-stats .new-stat {
        flex: 1 !important;
        min-width: 30% !important;
        text-align: center !important;
        margin-bottom: 10px !important;
    }
    
    .new-section .btn.new-btn {
        display: block !important;
        margin: 0 auto !important;
        padding: 8px 16px !important;
        font-size: 0.9rem !important;
        text-align: center !important;
    }
}

.division-card-link:hover .division-card {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

/* Division Image */
.division-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.division-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.division-card:hover .division-img {
    transform: scale(1.05);
}

.division-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.division-card:hover .division-overlay {
    opacity: 1;
}

.division-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.division-card:hover .division-icon {
    transform: scale(1);
}

.division-card-header {
    padding: 20px 25px 15px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.division-info {
    flex: 1;
}

.division-category {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.division-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.division-card-body {
    padding: 20px 25px 25px;
}

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

.division-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.highlight-item span {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Stats Section */
.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Testimonial */
.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    position: relative;
    margin-top: 2rem;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: var(--primary-color);
    font-family: serif;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: var(--primary-color);
    font-weight: 500;
}

/* Features */
.feature-item {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-item h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-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="contactGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23d4af37" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23d4af37" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23d4af37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23contactGrain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-label {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
}

.contact-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 30px;
    border-radius: 2px;
    position: relative;
}

.contact-underline::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 4px;
    animation: pulse 2s infinite;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact Methods */
.contact-methods {
    margin-bottom: 60px;
}

.contact-method-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-method-card:hover::before {
    left: 100%;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-color);
}

.contact-method-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.contact-method-card:hover .contact-method-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.contact-method-content {
    text-align: center;
}

.contact-method-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-method-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.contact-detail-item i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.contact-detail-item span {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Business Hours */
.business-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.business-hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.business-hour-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.business-hour-item .day {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

.business-hour-item .time {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Division Contacts */
.division-contacts {
    margin-bottom: 60px;
}

.division-contacts-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 15px;
}

.division-contacts-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

.division-contact-card {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.division-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.division-contact-card:hover::before {
    left: 100%;
}

.division-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-color);
}

.division-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

.division-contact-card:hover .division-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

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

.division-email,
.division-phone {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.division-contact-card:hover .division-email,
.division-contact-card:hover .division-phone {
    color: var(--primary-color);
}

/* Contact Form Section */
.contact-form-section {
    margin-top: 40px;
}

.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    font-size: 1rem;
    background: #f8f9fa;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    background: white;
    outline: none;
}

.form-control::placeholder {
    color: #adb5bd;
    font-style: italic;
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.form-actions .btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.form-actions .btn-primary {
    background: var(--gradient-primary);
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.form-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.form-actions .btn-outline-secondary {
    border: 2px solid #6c757d;
    color: #6c757d;
}

.form-actions .btn-outline-secondary:hover {
    background: #6c757d;
    color: white;
    transform: translateY(-3px);
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-methods {
        margin-bottom: 40px;
    }
    
    .contact-method-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .contact-method-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .contact-method-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .contact-method-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .contact-detail-item {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .contact-detail-item span {
        font-size: 0.85rem;
    }
    
    .business-hour-item {
        padding: 10px 12px;
    }
    
    .business-hour-item .day,
    .business-hour-item .time {
        font-size: 0.85rem;
    }
    
    .division-contacts {
        margin-bottom: 40px;
    }
    
    .division-contacts-title {
        font-size: 1.6rem;
    }
    
    .division-contacts-subtitle {
        font-size: 0.9rem;
    }
    
    .division-contact-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .division-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .division-name {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .division-email,
    .division-phone {
        font-size: 0.8rem;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-actions .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-method-card {
        padding: 20px 15px;
    }
    
    .contact-method-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-method-title {
        font-size: 1.1rem;
    }
    
    .contact-detail-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .business-hour-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .division-contact-card {
        padding: 15px 10px;
    }
    
    .contact-form-container {
        padding: 20px 15px;
    }
    
    .form-title {
        font-size: 1.4rem;
    }
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-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="footerGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23d4af37" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23d4af37" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23d4af37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

/* Footer Main Content */
.footer-main {
    margin-bottom: 40px;
}

/* Company Section */
.footer-company-section {
    padding-right: 20px;
}

.footer-company-info {
    margin-bottom: 25px;
}

.footer-company-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    position: relative;
}

.footer-company-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
    font-style: italic;
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.footer-social {
    margin-top: 25px;
}

.footer-social .social-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-social .social-links {
    display: flex;
    gap: 12px;
    margin: 0;
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-social .social-link:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    border-color: var(--primary-color);
}

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

/* Quick Links Section */
.footer-links-section {
    padding: 0 20px;
}

.footer-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    position: relative;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links-simple {
    display: flex;
    flex-direction: column;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

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

/* Contact Section - Compact */
.footer-contact-section {
    padding-left: 20px;
}

.footer-contact-compact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-info-item {
    padding: 4px 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(3px);
}

.contact-value {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    font-weight: 500;
}

.contact-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    display: block;
}

.contact-link:hover {
    color: var(--primary-color);
    text-decoration: none;
    transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 30px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

.footer-legal-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal-link:hover {
    color: white;
    text-decoration: underline;
}


/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-main {
        margin-bottom: 30px;
    }
    
    .footer-company-section,
    .footer-links-section,
    .footer-contact-section {
        padding: 0;
    }
    
    .footer-company-name {
        font-size: 1.5rem;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .contact-info-item {
        padding: 3px 0;
    }
    
    .contact-value {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        text-align: left !important;
    }
    
    /* Ensure footer content stays left-aligned on mobile */
    .footer-section,
    .footer-main,
    .footer-company-section,
    .footer-links-section,
    .footer-contact-section {
        text-align: left !important;
    }
    
    .footer-company-name,
    .footer-tagline,
    .footer-description,
    .footer-section-title {
        text-align: left !important;
    }
    
    .footer-links-list,
    .footer-contact-compact {
        text-align: left !important;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 30px 0 15px;
    }
    
    
    .footer-company-name {
        font-size: 1.3rem;
    }
    
    .footer-social .social-link {
        width: 35px;
        height: 35px;
    }
    
    .footer-social .social-link i {
        font-size: 0.9rem;
    }
    
    .contact-info-item {
        text-align: left;
        padding: 5px 0;
    }
    
    .contact-value {
        font-size: 0.8rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999 !important;
    opacity: 0;
    visibility: hidden;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    animation: pulseGlow 2s infinite;
}

.back-to-top.show {
    opacity: 1 !important;
    visibility: visible !important;
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Temporary: Always show for testing */
.back-to-top {
    opacity: 1 !important;
    visibility: visible !important;
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    border-color: rgba(255, 255, 255, 0.4);
}

.back-to-top:active {
    transform: translateY(-4px) scale(1.05);
    transition: all 0.1s ease;
}

/* Animations */
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    }
}

@keyframes bounceUp {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Our Presence Section */
.our-presence-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.our-presence-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="%23d4af37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23d4af37" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23d4af37" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.our-presence-section .container {
    position: relative;
    z-index: 2;
}

.presence-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
}

.presence-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: pulse 2s infinite;
}

.presence-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.presence-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.presence-card:hover::before {
    left: 100%;
}

.presence-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.presence-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.presence-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.presence-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.3;
}

.presence-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
    font-style: italic;
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.presence-number.animate {
    animation: countUp 0.6s ease-out;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-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="testimonialGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23d4af37" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23d4af37" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonialGrain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

.testimonial-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
}

.testimonial-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 15px auto 0;
    animation: pulse 2s infinite;
}

.testimonial-slider {
    position: relative;
    overflow: visible;
}

.testimonial-slides {
    position: relative;
    min-height: 400px;
}

.testimonial-slide {
    width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    z-index: 1;
    display: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
    display: block;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 40px;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}


.author-info h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

.testimonial-dots {
    display: flex !important;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    border: 2px solid rgba(212, 175, 55, 0.8);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.testimonial-prev {
    margin-left: -25px;
}

.testimonial-next {
    margin-right: -25px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* New section mobile adjustments */
    .new-logo-container {
        min-height: 300px;
        margin-bottom: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .new-logo {
        max-width: 180px;
        display: block;
        margin: 0 auto;
    }
    
    .new-section .col-lg-5 {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    
    .new-content {
        padding: 40px 20px;
        min-height: 300px;
    }
    
    .new-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .new-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .new-stats {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .new-stat-number {
        font-size: 2rem;
    }
    
    .new-stat-label {
        font-size: 0.8rem;
    }
    
    /* What We Do section mobile adjustments */
    .what-we-do-section {
        padding: 30px 0;
    }
    
    .what-we-do-header {
        margin-bottom: 30px;
    }
    
    .what-we-do-title {
        font-size: 2.2rem;
    }
    
    .what-we-do-subtitle {
        font-size: 1rem;
    }
    
    .what-we-do-card {
        padding: 20px 15px;
        margin-bottom: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .card-content p {
        font-size: 0.9rem;
    }
    
    .promise-text {
        padding: 20px 25px;
    }
    
    .promise-label {
        font-size: 1.1rem;
    }
    
    .promise-content {
        font-size: 1rem;
    }
    
    /* Founder section mobile adjustments */
    .founder-section {
        padding: 80px 0;
    }
    
    .founder-header-section {
        margin-bottom: 50px;
    }
    
    .founder-section-title {
        font-size: 2.2rem;
    }
    
    .founder-img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
    
    .founder-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .founder-name {
        font-size: 2.5rem;
    }
    
    .founder-role {
        font-size: 1rem;
    }
    
    .founder-bio {
        font-size: 1rem;
    }
    
    
    .founder-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .founder-social {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    /* Divisions section mobile adjustments */
    .divisions-section {
        padding: 60px 0;
    }
    
    .divisions-title {
        font-size: 2rem;
    }
    
    .division-image {
        height: 160px;
    }
    
    .division-card-header {
        padding: 15px 20px 10px;
    }
    
    .division-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .division-name {
        font-size: 1.2rem;
    }
    
    .division-card-body {
        padding: 15px 20px 20px;
    }
    
    .division-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .highlight-item {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .highlight-item span {
        font-size: 0.85rem;
    }
    
    /* Our Presence section mobile adjustments */
    .our-presence-section {
        padding: 60px 0;
    }
    
    .presence-title {
        font-size: 2rem;
    }
    
    .presence-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .presence-number {
        font-size: 3rem;
    }
    
    .presence-label {
        font-size: 1rem;
    }
    
    .presence-description {
        font-size: 0.85rem;
    }
    
    /* Testimonial section mobile adjustments */
    .testimonial-section {
        padding: 60px 0;
    }
    
    .testimonial-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-quote {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .testimonial-author {
        text-align: center;
    }
    
    .author-info h5 {
        font-size: 1.1rem;
    }
    
    .author-info p {
        font-size: 0.9rem;
    }
    
    .testimonial-nav {
        display: none;
    }
    
    .testimonial-dots {
        margin-top: 30px;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        margin-top: 2rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.1rem;
    }
    
    /* Mobile video optimization */
    .hero-video {
        object-position: center center;
    }
    
    /* About section mobile adjustments */
    .about-section {
        padding: 60px 0;
    }
    
    .about-logo-container {
        min-height: 300px;
        margin-bottom: 2rem;
    }
    
    .about-logo {
        max-width: 150px;
    }
    
    .about-content {
        padding: 40px 30px;
        min-height: 300px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .about-stat {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        background: rgba(212, 175, 55, 0.05);
        border-radius: 10px;
        border-left: 4px solid var(--primary-color);
    }
    
    .about-stat-number {
        font-size: 1.5rem;
    }
    
    .about-content .lead {
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 100vh;
    }
    
    .about-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    /* Mobile navigation for small screens */
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
        display: flex !important;
        align-items: center !important;
    }
    
    .logo-img {
        height: 35px;
        width: auto;
        max-width: 100px;
        display: block !important;
        visibility: visible !important;
        object-fit: contain;
    }
    
    .navbar-collapse {
        margin-top: 15px;
        padding: 15px;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .dropdown-item {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .navbar-toggler {
        padding: 6px 10px;
    }
}

@media (max-width: 576px) {
    .hero-buttons .btn:hover::after {
        width: 150px;
        height: 150px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9997; /* Lower than navigation z-index */
    transition: opacity 0.3s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8941f;
}

/* CRITICAL MOBILE ALIGNMENT FIX - MUST BE LAST */
@media (max-width: 768px) {
    /* Force all content to be properly centered and aligned */
    * {
        box-sizing: border-box !important;
    }
    
    body, html {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .container, .container-fluid {
        margin: 0 auto !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }
    
    [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        float: none !important;
    }
    
    /* Force all sections to use full width */
    section, .section, [class*="section"] {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Floating WhatsApp Popup Button (Desktop Only) */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9998;
    display: block;
}

.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 300px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.whatsapp-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.popup-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #25D366;
    border-radius: 15px 15px 0 0;
    color: white;
}

.popup-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.popup-avatar i {
    font-size: 1.2rem;
}

.popup-info {
    flex: 1;
}

.popup-info h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.popup-info p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.9;
}

.popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.popup-message {
    padding: 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.popup-message p {
    margin: 0;
    color: #333;
    font-size: 0.9rem;
}

.popup-actions {
    padding: 15px;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-whatsapp:hover {
    background: #20c55a;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-trigger {
    width: 60px;
    height: 60px;
    background: #25D366;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-trigger:hover {
    background: #20c55a;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Mobile Sticky Buttons (Mobile Only) */
.mobile-sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #906632;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0px 15px;
    display: none;
    z-index: 9997;
    box-shadow: 0 -5px 20px rgba(212, 175, 55, 0.2);
}

.mobile-sticky-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 10px 5px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 5px;
}

.mobile-sticky-btn:hover {
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.mobile-sticky-btn i {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.mobile-sticky-btn span {
    font-size: 0.75rem;
    font-weight: 500;
}

.whatsapp-btn {
    color: white;
}

.whatsapp-btn:hover {
    color: white;
    background: rgba(37, 211, 102, 0.3);
}

.call-btn {
    color: white;
}

.call-btn:hover {
    color: white;
    background: rgba(0, 123, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-floating-btn {
        display: none !important;
    }
    
    .mobile-sticky-buttons {
        display: flex !important;
    }
}

@media (min-width: 769px) {
    .mobile-sticky-buttons {
        display: none !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .back-to-top,
    .scroll-indicator,
    .whatsapp-floating-btn,
    .mobile-sticky-buttons {
        display: none !important;
    }
    
    .hero-section {
        height: auto;
        background: none;
        color: black;
    }
    
    .hero-title,
    .hero-subtitle {
        color: black;
        text-shadow: none;
    }
}


.call-btn .fa-phone:before{
    font-size: 1.4rem;
}
