* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html, body {
    height: 100%;
  }


:root {
    --primary-color: #23496D;
    --secondary-color: #ffffff;
    --tertiary-color: #000000;
    --footer-color: #000c28;
}

.fs-10 { font-size: 10px; }
.fs-12 { font-size: 12px; }
.fs-14 { font-size: 14px; }
.fs-16 { font-size: 16px; }
.fs-18 { font-size: 18px; }
.fs-20 { font-size: 20px; }
.fs-22 { font-size: 22px; }
.fs-24 { font-size: 24px; }
.fs-26 { font-size: 26px; }
.fs-28 { font-size: 28px; }
.fs-30 { font-size: 30px; }
.fs-32 { font-size: 32px; }
.fs-34 { font-size: 34px; }
.fs-36 { font-size: 36px; }
.fs-38 { font-size: 38px; }
.fs-40 { font-size: 40px; }
.fs-42 { font-size: 42px; }
.fs-44 { font-size: 44px; }
.fs-46 { font-size: 46px; }
.fs-48 { font-size: 48px; }
.fs-50 { font-size: 50px; }
.fs-52 { font-size: 52px; }
.fs-54 { font-size: 54px; }
.fs-56 { font-size: 56px; }
.fs-58 { font-size: 58px; }
.fs-60 { font-size: 60px; }
.fs-62 { font-size: 62px; }
.fs-64 { font-size: 64px; }
.fs-66 { font-size: 66px; }
.fs-68 { font-size: 68px; }
.fs-70 { font-size: 70px; }
.fs-72 { font-size: 72px; }
.fs-74 { font-size: 74px; }
.fs-76 { font-size: 76px; }
.fs-78 { font-size: 78px; }
.fs-80 { font-size: 80px; }
.fs-82 { font-size: 82px; }

/* Responsive Font Sizes */
.fs-lg-48 { font-size: 48px; }
.fs-lg-36 { font-size: 36px; }
.fs-lg-24 { font-size: 24px; }
.fs-lg-22 { font-size: 22px; }
.fs-lg-20 { font-size: 20px; }
.fs-lg-18 { font-size: 18px; }
.fs-lg-16 { font-size: 16px; }
.fs-lg-14 { font-size: 14px; }

.fs-md-48 { font-size: 48px; }
.fs-md-36 { font-size: 36px; }
.fs-md-24 { font-size: 24px; }
.fs-md-22 { font-size: 22px; }
.fs-md-20 { font-size: 20px; }
.fs-md-18 { font-size: 18px; }
.fs-md-16 { font-size: 16px; }
.fs-md-14 { font-size: 14px; }

.fs-sm-48 { font-size: 48px; }
.fs-sm-36 { font-size: 36px; }
.fs-sm-24 { font-size: 24px; }
.fs-sm-22 { font-size: 22px; }
.fs-sm-20 { font-size: 20px; }
.fs-sm-18 { font-size: 18px; }
.fs-sm-16 { font-size: 16px; }
.fs-sm-14 { font-size: 14px; }

.fw-100 { font-weight: 100; }
.fw-200 { font-weight: 200; }
.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }


.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }
.ls-3 { letter-spacing: 3px; }
.ls-4 { letter-spacing: 4px; }
.ls-5 { letter-spacing: 5px; }
.ls-6 { letter-spacing: 6px; }
.ls-7 { letter-spacing: 7px; }

.lh-1 { line-height: 1; }
.lh-2 { line-height: 2; }
.lh-3 { line-height: 3; }
.lh-4 { line-height: 4; }
.lh-5 { line-height: 5; }
.lh-6 { line-height: 6; }
.lh-7 { line-height: 7; }
.lh-8 { line-height: 8; }
.lh-9 { line-height: 9; }
.lh-10 { line-height: 10; }

/* Navbar Styles */
.navbar {
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    background-color: transparent !important;
}

/* Allow inline styles to override CSS */
.navbar[style*="background-color"] {
    background-color: inherit !important;
}

.navbar.bg-transparent {
    background-color: transparent !important;
}

/* Ensure navbar starts transparent on page load */
.navbar.fixed-top {
    background-color: transparent !important;
}

.navbar.bg-solid {
    background-color: rgba(35, 73, 109, 0.95) !important;
    backdrop-filter: blur(10px) !important;
}

.navbar.bg-scroll {
    background-color: rgba(35, 73, 109, 0.6) !important;
    backdrop-filter: blur(10px) !important;
}

/* Ensure navbar text remains visible */
.navbar {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.navbar .btn-primary:hover {
    background-color: #1a3a5a;
    border-color: #1a3a5a;
}

/* Ensure logos remain visible */
.navbar img {
    filter: brightness(1);
}

/* When navbar has background, ensure text is white */
.navbar.bg-solid .btn-primary {
    color: white;
}

.navbar.bg-solid .btn-primary:hover {
    color: white;
}

/* Hero Section Styles */
.hero-section {
    background-image: url('../images/banner-1-opt.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    /* display: flex; */
    align-items: center;
    position: relative;
    padding-top: 80px; /* Account for fixed navbar */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

.hero-section .container:first-child {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 80px);
}

.hero-section .container:last-child {
    margin-top: 40px;
    padding-bottom: 100px; /* Space for scroll indicator */
}

.hero-section .container:last-child .row:first-child {
    margin-bottom: 60px;
}

/* .hero-section h2 {
    color: white;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
} */

/* .hero-section p {
    color: white;
    line-height: 1.6;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
} */

.hero-section p:last-child {
    margin-bottom: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator p {
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Custom Button Styles */
.btn-primary {
    background-color: #ffffff;
    border-color: var(--primary-color);
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5.5px;
    color: var(--primary-color);
    padding: 10px 20px 10px 20px;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    color: var(--secondary-color);
}

/* Typography */


.lead {
    font-size: 1.25rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Logo Styles */
.navbar-brand img {
    filter: brightness(0) invert(1); /* Makes logos white */
}

.navbar.scrolled .navbar-brand img {
    filter: none; /* Restores original colors when scrolled */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding-top: 70px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.5rem;
    }
    
    .navbar-brand img {
        width: 20px !important;
        height: 20px !important;
    }
    
    .navbar-brand.mx-auto img {
        width: 60px !important;
        height: 60px !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .display-4 {
        font-size: 1.75rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
} 

/* Content Section Styles */
.content-section {
    background-color: #f8f9fa;
    color: var(--primary-color);
    padding: 80px 0;
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 5px;
}

.content-section p {
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.content-section p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for content section */
@media (max-width: 768px) {
    .content-section {
        padding: 60px 0;
    }
    
    .content-section h2 {
        font-size: 20px !important;
        letter-spacing: 3px;
    }
    
    .content-section p {
        font-size: 18px !important;
        letter-spacing: 2px;
    }
}

@media (max-width: 576px) {
    .content-section {
        padding: 40px 0;
    }
    
    .content-section h2 {
        font-size: 18px !important;
        letter-spacing: 2px;
    }
    
    .content-section p {
        font-size: 16px !important;
        letter-spacing: 1px;
    }
} 

/* Video Section Styles */
#smooth-wrapper {
    height: 100%;
    overflow: hidden;
  }
  #smooth-content {
    will-change: transform;
  }
  
.video-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 100vh;
    width: 100%;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.video-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-section .container {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

.video-section .row:first-child {
    flex-grow: 1;
}

.video-section .row:last-child {
    margin-top: auto;
}

/* .video-section h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
} */

/* .video-section p {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
} */

/* Responsive adjustments for video section */
@media (max-width: 768px) {
    .video-section h2 {
        font-size: 32px !important;
    }
    
    .video-section p {
        font-size: 20px !important;
    }
}

@media (max-width: 576px) {
    .video-section h2 {
        font-size: 28px !important;
    }
    
    .video-section p {
        font-size: 18px !important;
    }
} 

/* Registration Form Styles */
.registration-form-section {
    background-color: white;
    position: relative;
    z-index: 10;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* .registration-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
} */

.registration-form .form-label {
    position: relative;
    z-index: 10;
    color: #000;
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 600;
    white-space: nowrap;
}
.registration-form .form-control::placeholder,
.registration-form .form-select::placeholder {
    color: #000;
    font-weight: 500;
}

.registration-form .form-control,
.registration-form .form-select {
    border: 1px solid #1a1a1a;
    border-radius: 0px;
    padding: 8px 12px;
    font-size: 14px;
    background-color: white;
    transition: border-color 0.3s ease;
    height: 45px;
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
}

.registration-form .form-control:focus,
.registration-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(35, 73, 109, 0.25);
    outline: none;
}

.registration-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px 8px;
    padding-right: 30px;
    color: #000;
}
.registration-form .form-select option{
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
}

.radio-group {
    display: flex;
    gap: 15px;
    margin-top: 6px;
}

.radio-group .form-check {
    margin: 0;
}

.radio-group .form-check-input {
    margin-right: 6px;
    width: 16px;
    height: 16px;
}

.radio-group .form-check-label {
    color: #000;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.form-check-input:checked {
    background-color: #b7b7b7;
    border-color: #b7b7b7;
}


.disclaimer-text {
    color: #666;
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
    font-weight: 200;
}

.btn-register {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: all 0.3s ease;
    min-width: 150px;
}

.btn-register:hover {
    background-color: #1a3a5a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(35, 73, 109, 0.3);
}

@media (max-width: 992px) {
.registration-form .form-label{font-size: 10px;}
.registration-form .form-control, .registration-form .form-select{font-size: 10px;}
}

/* Responsive adjustments for form */
@media (max-width: 768px) {
    .registration-form {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .registration-form .form-label {
        font-size: 13px;
    }
    
    .registration-form .form-control,
    .registration-form .form-select {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .btn-register {
        padding: 12px 30px;
        font-size: 16px;
        min-width: 180px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .registration-form {
        padding: 20px 15px;
    }
    
    .registration-form .form-label {
        font-size: 12px;
        word-wrap: break-word;
        white-space: normal;
    }
    
    .btn-register {
        padding: 10px 25px;
        font-size: 14px;
        min-width: 160px;
    }
} 

/* Footer Styles */
.bg-dark-blue {
    background-color: #13233e;
}

.bg-footer-color {
    background-color: var(--footer-color);
}

.footer-logo h2 {
    font-family: 'Times New Roman', serif;
    font-weight: bold;
    color: white;
    margin-bottom: 0;
}

.footer-logo p {
    font-size: 0.9rem;
    color: white;
    margin-bottom: 0.5rem;
}


.social-media-icons {
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* background-color: white; */
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 15px;
    border: 1px solid;
}

.social-icon:hover {
    background-color: #dc3545;
    color: white;
    transform: translateY(-2px);
}

.social-icon i {
    font-size: 22px;
}

.footer-content .slogan {
    font-family: 'Times New Roman', serif;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-content h6 {
    color: white;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-info p {
    color: white;
    margin-bottom: 0.5rem;
}

.bild-badge {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
   
}

.bild-badge img{
    width: 200px;
}

.badge-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.badge-content span {
    color: #6c757d;
    font-size: 0.8rem;
    font-weight: bold;
}

.badge-content div:first-of-type {
    color: #28a745;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 5px 0;
}

.badge-content div:last-of-type {
    color: #6c757d;
    font-size: 0.6rem;
    text-align: center;
    line-height: 1.2;
}

.copyright p {
    color: white;
    font-size: 0.8rem;
    margin-bottom: 0;
}

.copyright a {
    color: white;
    text-decoration: underline;
}

.copyright a:hover {
    color: #dc3545;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-logo h2 {
        font-size: 2rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }
    
    .social-icon i {
        font-size: 14px;
    }
    
    .badge-circle {
        width: 100px;
        height: 100px;
        padding: 10px;
    }
    
    .badge-content div:first-of-type {
        font-size: 1rem;
    }
    
    .footer-content .slogan {
        font-size: 1rem;
    }
    
    .contact-info p {
        font-size: 0.8rem;
    }
    .bild-badge { justify-content: flex-start !important;}
    .bild-badge img { width: 130px; }
}

@media (max-width: 576px) {
    .footer-logo h2 {
        font-size: 1.8rem;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }
    
    .social-icon i {
        font-size: 12px;
    }
    
    .badge-circle {
        width: 80px;
        height: 80px;
        padding: 8px;
    }
    
    .badge-content span {
        font-size: 0.7rem;
    }
    
    .badge-content div:first-of-type {
        font-size: 0.9rem;
    }
    
    .badge-content div:last-of-type {
        font-size: 0.5rem;
    }
    
    .footer-content .slogan {
        font-size: 0.9rem;
    }
    
    .contact-info p {
        font-size: 0.75rem;
    }
    
    .copyright p {
        font-size: 0.7rem;
    }
    .smallLogo img{width:80px;height:80px}
}

/* Responsive Font Size Media Queries */
@media (min-width: 992px) {
    .fs-lg-48 { font-size: 48px !important; }
    .fs-lg-36 { font-size: 36px !important; }
    .fs-lg-24 { font-size: 24px !important; }
    .fs-lg-22 { font-size: 22px !important; }
    .fs-lg-20 { font-size: 20px !important; }
    .fs-lg-18 { font-size: 18px !important; }
    .fs-lg-16 { font-size: 16px !important; }
    .fs-lg-14 { font-size: 14px !important; }

}

@media (min-width: 768px) and (max-width: 991px) {
    .fs-md-48 { font-size: 48px !important; }
    .fs-md-36 { font-size: 36px !important; }
    .fs-md-24 { font-size: 24px !important; }
    .fs-md-22 { font-size: 22px !important; }
    .fs-md-20 { font-size: 20px !important; }
    .fs-md-18 { font-size: 18px !important; }
    .fs-md-16 { font-size: 16px !important; }
    .fs-md-14 { font-size: 14px !important; }
}

@media (max-width: 767px) {
    .fs-sm-48 { font-size: 48px !important; }
    .fs-sm-36 { font-size: 36px !important; }
    .fs-sm-24 { font-size: 24px !important; }
    .fs-sm-22 { font-size: 22px !important; }
    .fs-sm-20 { font-size: 20px !important; }
    .fs-sm-18 { font-size: 18px !important; }
    .fs-sm-16 { font-size: 16px !important; }
    .fs-sm-14 { font-size: 14px !important; }
    .fs-52 {
        font-size: 40px;
    }
    .fs-38 {
        font-size: 30px;
    }
    .fs-24 {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .smallLogo { opacity: 1; transform: none !important; }
    .bigLogo { opacity: 0 !important; }
  }

/* Page Loader Styles */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(35, 73, 109, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-loader.show {
    display: flex;
    opacity: 1;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
}

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

/* Ensure navbar text remains visible */

/* Back to Top Button */
.back-to-top-btn {
    width: 50px !important;
    height: 50px !important;
    background-color: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    box-shadow: 0 4px 15px rgba(35, 73, 109, 0.3) !important;
    opacity: 1 !important;
    margin-left: 15px !important;
}

.back-to-top-btn:hover {
    background-color: #1a3a5a;
    box-shadow: 0 6px 20px rgba(35, 73, 109, 0.4);
}

/* Responsive adjustments for back to top button */
@media (max-width: 768px) {
    .back-to-top-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
        margin-left: 10px !important;
    }
}

@media (max-width: 576px) {
    .back-to-top-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
        margin-left: 8px !important;
    }
}

/* Hide reCAPTCHA error messages */
.grecaptcha-badge {
    visibility: hidden !important;
}

/* Hide any reCAPTCHA error popups or messages */
iframe[src*="recaptcha"] {
    display: none !important;
}

/* Home Page Loader */
.home-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a5a 100%);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.home-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.home-loader-content {
    text-align: center;
    color: white;
}

.home-loader-logo {
    margin-bottom: 30px;
    animation: logoFadeIn 1.5s ease-out;
}

.loader-logo-img {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

.home-loader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1.5s linear infinite;
}

.home-loader-text {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 3px;
    margin: 0;
    animation: textFadeIn 2s ease-out;
    text-transform: uppercase;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    50% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive adjustments for home loader */
@media (max-width: 768px) {
    .loader-logo-img {
        width: 100px;
    }
    
    .home-loader-spinner {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }
    
    .home-loader-text {
        font-size: 20px;
        letter-spacing: 2px;
    }
}

@media (max-width: 576px) {
    .loader-logo-img {
        width: 80px;
    }
    
    .home-loader-spinner {
        width: 40px;
        height: 40px;
    }
    
    .home-loader-text {
        font-size: 18px;
        letter-spacing: 1px;
    }
}




