/* Font Imports */


  
  :root {
    --primary: #1a1a1a;
    --secondary: #c8a97e;
    --light: #f8f9fa;
    --dark: #343a40;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}


  body {
    font-family: "PT Serif", serif;
    color: var(--primary);
    font-weight: 400;
    line-height: 1.6;
    color: #333;
  }

  h1, h2, h3, h4, h5, h6,
  .display-1, .display-2, .display-3, .display-4, .display-5 {
    font-family: "PT Serif", serif;
    font-weight: 400;
    line-height: 1.2;
  }

/* Italic style for specific elements */
.italic, blockquote, .testimonial-text p {
    font-family: "PT Serif", serif;
    font-style: italic;
}

/* Primary color applications */
.text-primary, .bg-primary, .btn-primary {
    color: var(--primary-color);
}
.bg-primary {
    background-color: var(--primary-color);
}
.btn-primary {
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.text-normal {
    font-weight: 400;
}

.text-light {
    font-weight: 300;
}

/* Rest of your existing CSS with font-family removed */
.testimonial-card {
    transition: all 0.3s ease;
    height: 100%;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}
.divider {
    background: linear-gradient(90deg, #fff, var(--primary-color), #fff);
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}
@keyframes shine {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}
.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
    padding: 20px 0;
}
.owl-carousel .owl-item {
    display: flex;
    height: 100%;
}
.rating i {
    font-size: 1.2rem;
}
.client-image-wrapper {
    flex-shrink: 0;
}
.object-fit-cover {
    object-fit: cover;
}

/* Custom Styles */
.hero-section { height: 100vh; }
.carousel-caption { 
    background: rgba(0,0,0,0.5); 
    padding: 20px;
    border-radius: 10px;
}
.portfolio-card {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}
.portfolio-card .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}
.portfolio-card:hover .overlay { opacity: 1; }


/* === Navbar Styles === */
/* Custom Transparent Navbar */
.navbar-transparent {
    background-color: transparent !important;
    position: absolute;
    width: 100%;
    z-index: 1000;
}

.navbar-transparent .navbar-brand,
.navbar-transparent .nav-link {
    color: rgba(255, 255, 255, 0.568) !important;
}

.navbar-transparent .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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile menu styles */
@media (max-width: 991.98px) {
    .navbar-transparent .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.9);
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 0.25rem;
    }
}
/* === Navbar Styles end === */

/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    min-height: 600px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
}

/* ===== PHILOSOPHY & APPROACH SECTIONS ===== */
.philosophy-section, .approach-section {
    padding: 6rem 0;
}

.blockquote {
    border-left: 4px solid #000;
    padding-left: 1.5rem;
}

/* ===== ANIMATIONS ===== */
.animate__animated {
    animation-duration: 1.5s;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem !important;
    }
    .hero-section p {
        font-size: 1.25rem !important;
    }
}


/* Hero Section Enhancements */
.hero-section {
    isolation: isolate;
}

/* Video Background */
.hero-section video {
    object-position: center;
}

/* Z-index Layers */
.z-0 { z-index: 0; }
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }

/* Animations */
.animate__animated {
    animation-duration: 1s;
}

/* Responsive Typography */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem !important;
    }
    .hero-section .lead {
        font-size: 1.25rem !important;
    }
}

/* Button Hover Effects */
.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
}


/* =======================testimonial css=================== */

.testimonial-card {
    transition: all 0.3s ease;
    height: 100%;
  }
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
  }
  .divider {
    background: linear-gradient(90deg, #fff, #0d6efd, #fff);
    background-size: 200% auto;
    animation: shine 3s linear infinite;
  }
  @keyframes shine {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
  }
  .owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
    padding: 20px 0;
  }
  .owl-carousel .owl-item {
    display: flex;
    height: 100%;
  }
  .rating i {
    font-size: 1.2rem;
  }
  .client-image-wrapper {
    flex-shrink: 0;
  }
  .object-fit-cover {
    object-fit: cover;
  }
  /* ============testimonal css================== */