/* GENERAL RESET */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
}

/* HEADER */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 30px;
    background: #0a2b5b;
}
.header-container .logo img {
    height: 80px;
}
.main-nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}
.main-nav a:hover, .main-nav .cta-btn {
    background: #ffce00;
    color: #333;
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-icon {
    height: 55px;
}

.logo-text {
    height: 5px;   /* adjust if needed */
    padding: 10px 50px;
}

.logo-wrap:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .logo-icon {
        height: 45px;
    }
    .logo-text {
        height: 24px;
    }
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    height: 55px;
}

.brand-text {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.brand-text span {
    color: #ffce00;
}

.brand-text {
    font-family: 'Poppins',sans-serif;
    font-size: 50px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

}
.brand-text span {
    color: #ffce00;
}

/* VAJRASONE BRAND TYPOGRAPHY */

.vajrasone-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.vajrasone-text {
    font-family: 'Playfair Display', serif;
    font-size: 35px;
    font-weight: 800;

    background: linear-gradient(
        135deg,
        #D4AF37,
        #F4E4BA,
        #D4AF37,
        #AA8C2C,
        #D4AF37
    );
    background-size: 300% 300%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: vajraShimmer 4s ease infinite;
}

.vajrasone-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #ebe7e0;
    margin-top: 4px;
}

/* ANIMATIONS */
@keyframes vajraShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* HERO */
.hero {
    background: #b76041 url('<?php echo get_template_directory_uri(); ?>/images/hero-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 10px 20px;
}
.hero .cta-btn {
    background: #ffce00;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 20px;
}

/* ABOUT */
.about-us {
    background: #b3b3ff;
    padding: 20px 20px;
    text-align: center;
}
.about-us p {
    max-width: 900px;
    margin: auto;
    font-size: 18px;
    line-height: 1.7;
}

/* SERVICES */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}
.service-card {
    background: transparent;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    backdrop-filter: blur(4px);
}
.service-card h3 {
    color: #0a74da;
    margin-bottom: 10px;
}


/* CONTACT PAGE */
.contact-page {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}
.contact-intro {
    margin-bottom: 30px;
    font-size: 16px;
    text-align: center;
}
.contact-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.contact-info {
    flex: 1;
    background: transparent;
    padding: 25px;
    border-radius: 10px;
}
.contact-info h3 {
    margin-top: 20px;
}
.contact-info p {
    line-height: 1.6;
}
.hours {
    list-style: none;
    padding: 0;
}
.hours li {
    margin-bottom: 8px;
}
.contact-form {
    flex: 1;
    background: transparent;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.contact-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.captcha-note {
    font-size: 12px;
    margin-top: 15px;
    color: #555;
}
.form-buttons {
    margin-top: 20px;
}
.form-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.form-buttons button:first-child {
    background: #0a74da;
    color: white;
}
.form-buttons .cancel {
    background: #ccc;
    margin-left: 10px;
}

/* FOOTER */
footer {
    background: #012b5b;
    color: white;
    padding: 1px 1px;
    text-align: left;
}
footer a {
    color: white;
    text-decoration: none;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-copy {
    text-align: center;
    margin-top: 10px;
    font-size: 20px;
}
/* SERVICES PAGE */
.services-hero {
    background: linear-gradient(rgba(10,116,218,0.9), rgba(10,116,218,0.9)),
                url('images/services-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 20px 20px;
}

.services-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.services-hero p {
    font-size: 18px;
}

.services-details {
    padding: 70px 20px;
    background: #ffffff;
}

.service-item {
    max-width: 900px;
    margin: 0 auto 50px;
}

.service-item h2 {
    color: #0a74da;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-item ul {
    padding-left: 20px;
}

.service-item ul li {
    margin-bottom: 8px;
}

.services-cta {
    background: #0a74da;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.services-cta h2 {
    margin-bottom: 10px;
}

.about-hero {
  background: #0a0a0f;
  padding: 80px 20px;
  text-align: center;
}

.about-hero h1 {
  color: #d4af37;
  font-size: 42px;
  margin-bottom: 10px;
}

.about-hero .tagline {
  color: #8b7355;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 14px;
}

.about-content,
.about-mission,
.about-vision,
.about-services,
.about-values {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-services ul,
.about-values ul {
  list-style: none;
  padding-left: 0;
}

.about-services li,
.about-values li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.hero-section {
  position: relative;
  height: 90vh;
  background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.7);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.hero-content h1 {
  font-size: 64px;
  color: #d4af37;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  letter-spacing: 3px;
  color: #c9b37e;
  margin-bottom: 30px;
}

.hero-btn {
  padding: 14px 36px;
  background: #d4af37;
  color: #0a0a0f;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #b8962e;
}

/* HERO VIDEO SECTION */
.hero-video {
    position: relative;
    height: 100vh;
    width: 100%;
    background: transparent;
    overflow: hidden;
}

.hero-services{
   position: relative;
    height: 20vh;
    width: 100%;
    overflow: hidden;
    background: lightskyblue;  
}

/* VIDEO */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* CONTENT OVER VIDEO */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 20px;
    max-width: 800px;
    margin-bottom: 25px;
}

.cta-btn {
    background: #0d6efd;
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.core-services {
    position: relative;
    padding: 80px 20px;
    color: #fff;
    overflow: hidden;
}

/* Background wrapper */
.core-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.core-services {
    position: relative;
    padding: 80px 20px;
    color: #fff;
    overflow: hidden;
}

.core-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideAnimation 12s infinite;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
}

/* Individual animations */
.slide1 {
    animation: slide1 12s infinite;
}

.slide2 {
    animation: slide2 12s infinite;
}

.slide3 {
    animation: slide3 12s infinite;
}

@keyframes slide1 {
    0% { opacity: 1; }
    33% { opacity: 1; }
    34% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes slide2 {
    0% { opacity: 0; }
    33% { opacity: 0; }
    34% { opacity: 1; }
    66% { opacity: 1; }
    67% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes slide3 {
    0% { opacity: 0; }
    66% { opacity: 0; }
    67% { opacity: 1; }
    100% { opacity: 1; }
}


.core-services::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}


.core-services .container {
    position: relative;
    z-index: 3;
}

.fade-in {
    opacity: 0.2;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

/* ---------- TABLET VIEW ---------- */
@media (max-width: 992px) {

    .header-container {
        padding: 10px 20px;
    }

    .brand-text {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 16px;
    }

}


/* ---------- MOBILE VIEW ---------- */
@media (max-width: 768px) {

    /* HEADER */
    .header-container {
        flex-direction: column;
        align-items: center;
        padding: 15px;
        gap: 10px;
    }

    .main-nav {
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .main-nav a {
        margin: 5px 0;
        display: block;
    }

    .brand-text {
        font-size: 26px;
    }

    /* HERO SECTION */
    .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 14px;
        padding: 0 10px;
    }

    .hero-video {
        height: 70vh;
    }

    /* SERVICES */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* CONTACT PAGE */
    .contact-container {
        flex-direction: column;
    }

    /* ABOUT */
    .about-hero h1 {
        font-size: 28px;
    }

}


/* ---------- SMALL MOBILE ---------- */
@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .vajrasone-text {
        font-size: 26px;
    }

}

/* =============================
   HAMBURGER MENU
   ============================= */

.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #0a2b5b;
        position: absolute;
        top: 100%;
        left: 0;
        text-align: center;
    }

    .main-nav a {
        padding: 15px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .main-nav.active {
        display: flex;
    }

    .header-container {
        position: relative;
    }
}




