@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    margin: 0;
    background-color: #000;
    color: #eee;
    font-family: Poppins;
    font-size: 12px;
}
a{
    text-decoration: none;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll margin for sections to account for fixed navbar */
section[id] {
    scroll-margin-top: 140px;
}

/* Unified Header Styles */
.unified-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Navbar scroll behavior */
.unified-header.navbar-hidden {
    transform: translateX(-50%) translateY(-120%);
    opacity: 0;
}

.unified-header.navbar-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}


/* Header Logo */
.header-logo {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.header-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

/* Header Title */
.header-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Navigation Links */
.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.nav-link:hover {
    color: #FFD700;
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Header Button */
.header-button-link {
    text-decoration: none;
    flex-shrink: 0;
}

.header-button {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-toggle:hover {
    background: rgba(255, 215, 0, 0.1);
}

.mobile-toggle svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.mobile-toggle.active svg {
    transform: rotate(90deg);
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-top: none;
    border-radius: 0 0 20px 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 12px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

.mobile-nav-link.mobile-cta {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    font-weight: 600;
    margin-top: 10px;
}

.mobile-nav-link.mobile-cta:hover {
    color: #000;
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Header Responsive Design */
@media (max-width: 1200px) {
    .unified-header {
        width: 85%;
    }
    
    .header-nav {
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .unified-header {
        width: 90%;
    }
    
    .header-nav {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .header-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 900px) {
    .header-nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .unified-header {
        width: 95%;
    }
    
    .header-container {
        padding: 12px 20px;
    }
    
    .header-nav {
        display: none;
    }
    
    .header-button-link {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .header-title {
        font-size: 1.5rem;
    }
        
    .header-logo {
        height: 40px;
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .unified-header {
        width: 95%;
        top: 10px;
    }
    
    .header-container {
        padding: 10px 15px;
    }
    
    .header-title {
        font-size: 1.3rem;
    }
    
    .mobile-menu-content {
        padding: 15px;
        gap: 12px;
    }
    
    .mobile-nav-link {
        font-size: 1rem;
        padding: 10px 12px;
    }
}

@media (max-width: 360px) {
    .unified-header {
        width: 98%;
        top: 5px;
    }
    
    .header-container {
        padding: 8px 12px;
    }
    
    .header-title {
        font-size: 1.2rem;
    }
    
    .mobile-toggle svg {
        width: 20px;
        height: 20px;
    }
}

/* ✨ Golden animated text accent */
.golden-accent {
  background: linear-gradient(
    90deg,
    #ffd700 0%,
    #fff8b0 25%,
    #ffe45c 50%,
    #fff8b0 75%,
    #ffd700 100%
  );
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
  position: relative;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

@keyframes shine {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}


/* ✨ GOLDEN BUTTON STYLE */
.golden-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  text-decoration: none;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Subtle golden sheen animation */
.golden-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: 0.75s;
}

.golden-btn:hover::before {
  left: 125%;
}

/* Hover glow */
.golden-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, #ffe45c 0%, #fff29b 50%, #ffd700 100%);
  color: #111;
}

/* Optional click effect */
.golden-btn:active {
  transform: scale(0.97);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* Sections Styling */
.container {
    max-width: 1140px;
    width: 80%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Scroll margin for sections to account for fixed navbar */
section[id] {
    scroll-margin-top: 120px;
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Services Section */
.services-section {
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.services-section h2 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 10px;
    color: #FFD700;
    font-weight: bold;
}

.card-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1100px;
    margin: 0 auto;
}

/* ======= Card Styles ======= */
.card {
    background: #000000 !important;
    background-color: #000000 !important;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 14px;
    width: 100%;
    max-width: 300px;
    padding: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    justify-self: center;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
    background: #0a0a0a !important;
    background-color: #0a0a0a !important;
    border-color: rgba(255, 215, 0, 0.5);
}

/* ======= Icon Styles ======= */
.icon-box {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #FFD700, #FFA500, #DAA520);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: all 0.4s ease;
}

.icon-box i {
    color: #000;
    font-size: 22px;
    font-weight: bold;
}

.card:hover .icon-box {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
}

/* ======= Text Styles ======= */
.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #FFD700;
    line-height: 1.3;
}

.card-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e5e5e5;
}

/* ======= Services Responsive ======= */
@media (max-width: 1200px) {
    .card-section {
        max-width: 1000px;
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .card-section {
        grid-template-columns: repeat(2, 1fr);
        max-width: 750px;
        gap: 2rem;
    }
    
    .card {
        max-width: 320px;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    /* Add margin-top to all sections except hero section */
    .about-section {
        padding-top: 50px;
    }
    
    .services-section {
        min-height: auto;
        padding: 60px 0;
        padding-top: 50px;
    }
    
    .services-section h2 {
        font-size: 2.5em;
        margin-bottom: 40px;
    }
    
    .card-section {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 1.5rem;
        padding: 2rem 0;
    }
    
    .card {
        max-width: 100%;
        padding: 2rem;
    }
    
    .icon-box {
        width: 60px;
        height: 60px;
        margin-bottom: 1.2rem;
    }
    
    .icon-box i {
        font-size: 24px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 100px 0;
    }
    
    .card-section {
        max-width: 350px;
        gap: 1.2rem;
        padding: 1.5rem 0;
    }
    
    .card {
        padding: 1.8rem;
        border-radius: 14px;
    }
    
    .icon-box {
        width: 55px;
        height: 55px;
        border-radius: 12px;
    }
    
    .icon-box i {
        font-size: 22px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-text {
        font-size: 0.9rem;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.about-section .container {
    width: 80%;
}

.about-section h2 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 50px;
    color: #FFD700;
    font-weight: bold;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ccc;
}

.about-features {
    display: grid;
    gap: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature i {
    font-size: 2em;
    color: #FFD700;
    margin-top: 5px;
}

.feature h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #fff;
}

.feature p {
    color: #ccc;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonials-header h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
}

.testimonials-subtitle {
    font-size: 1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Testimonial Card */
.testimonial-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.testimonial-card:hover::before {
    opacity: 1;
}

/* Quote Section */
.testimonial-quote {
    margin-bottom: 25px;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 15px;
    opacity: 0.7;
}

.testimonial-text {
    color: #e5e5e5;
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Rating Section */
.testimonial-rating {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.stars {
    display: flex;
    gap: 3px;
}

.stars i {
    color: #FFD700;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.testimonial-card:hover .stars i {
    transform: scale(1.1);
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    color: #000;
    font-size: 1.2rem;
}

.author-info {
    flex: 1;
}

.author-name {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.author-university {
    color: #FFD700;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0 3px 0;
}

.author-course {
    color: #ccc;
    font-size: 0.85rem;
    margin: 0;
}

/* Testimonials Responsive */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0;
        padding-top: 100px;
    }
    
    .testimonials-header h2 {
        font-size: 2.5em;
    }
    
    .testimonials-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding-top: 100px;
    }
    .testimonials-header h2 {
        font-size: 2em;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .quote-icon {
        font-size: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #000;
}

.contact-section .container {
    width: 80%;
}

.contact-section h2 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 50px;
    color: #FFD700;
    font-weight: bold;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-item i {
    font-size: 2em;
    color: #FFD700;
    width: 50px;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: #fff;
}

.contact-item p {
    color: #ccc;
    margin: 0;
}

.contact-map {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    
}

/* Responsive Map Container */
.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.map-container:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 13px;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

/* Legacy map placeholder styles (for fallback) */
.map-placeholder {
    width: 100%;
    height: 350px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.map-placeholder:hover {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.map-placeholder i {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 10px;
}

.map-placeholder p {
    color: #ccc;
    font-size: 1.1em;
    text-align: center;
    margin: 0;
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.form-section .container {
    width: 80%;
}

.form-section h2 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 50px;
    color: #FFD700;
    font-weight: bold;
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.form-description h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #fff;
}

.form-description p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #ccc;
}

.form-description ul {
    list-style: none;
    padding: 0;
}

.form-description li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #ccc;
}

.form-description li i {
    color: #FFD700;
    font-size: 1.2em;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-family: Poppins;
    font-size: 1em;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    border-radius: 8px;
    color: #000;
    font-family: Poppins;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Toast customization */
.toast-container {
    z-index: 9999;
}

.toast {
    min-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.toast-body {
    font-size: 0.95rem;
    padding: 12px;
}

/* Map Container Responsive Design */
@media (max-width: 1024px) {
    .map-container {
        padding-bottom: 60%; /* Slightly taller aspect ratio for tablets */
    }
}

@media (max-width: 768px) {
    .map-container {
        padding-bottom: 65%; /* Taller aspect ratio for mobile */
        border-radius: 12px;
    }
    
    .map-container iframe {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .map-container {
        padding-bottom: 75%; /* Even taller for small screens */
        border-radius: 10px;
    }
    
    .map-container iframe {
        border-radius: 8px;
    }
}

/* General Responsive Design */
@media screen and (max-width: 768px) {
    
    .form-section {
        padding-top: 100px;
    }
    
    .about-content,
    .contact-content,
    .form-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-section h2,
    .contact-section h2,
    .form-section h2 {
        font-size: 2.5em;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .container {
        width: 90%;
    }
}

@media screen and (max-width: 480px) {
    .about-section,
    .contact-section,
    .form-section {
        padding: 10
        0px 0;
    }
    .contact-section {
        padding-top: 100px;
    }
    .about-section {
        padding-top: 100px;
    }
    
    .about-section h2,
    .contact-section h2,
    .form-section h2 {
        font-size: 2em;
    }
    
    .form-description h3 {
        font-size: 1.5em;
    }
}/* En
hanced Golden Theme Effects */

/* Add subtle golden glow to body background */
body {
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.02) 0%, rgba(0, 0, 0, 1) 70%);
}

/* Remove custom scrollbar styling */

/* Enhanced golden selection color */
::selection {
    background: rgba(255, 215, 0, 0.3);
    color: #fff;
}

::-moz-selection {
    background: rgba(255, 215, 0, 0.3);
    color: #fff;
}

/* Remove focus outlines for navbar and interactive elements */
.nav-link:focus,
.header-button:focus,
a:focus {
    outline: none;
    box-shadow: none;
}

/* Keep focus styles only for form inputs */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
}

.newsletter-input:focus {
    outline: none;
}/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 60px 0 30px;
    position: relative;
}

.footer-section .container {
    width: 80%;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #FFD700 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Footer Brand */
.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.9rem;
}

.contact-info-item i {
    color: #FFD700;
    width: 16px;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #FFD700;
    transform: translateX(5px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-link:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Newsletter */
.newsletter {
    margin-top: 20px;
}

.newsletter-text {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 6px;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-btn {
    padding: 10px 12px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    border-radius: 6px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-link {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #FFD700;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 0;
        padding-top: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-links {
        gap: 15px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 30px 0 0;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}