
 :root {
    --primary-purple: #946C7C;  
    --secondary-pink: #D9B8C4;  
    --accent-gold: #B89C68;     
    --dark-navy: #3C2E37;       
    --light-lavender: #F5F0F3;  
    --soft-cream: #FAF2EC;      
    --gradient-primary: linear-gradient(135deg, #946C7C, #D9B8C4);
    --gradient-secondary: linear-gradient(135deg, #D9B8C4, #B89C68);
    --text-dark: #352F30;
    --text-light: #807377;
} 

* {
    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;
}

/* Hero Section - Diagonal Split Design */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    clip-path: polygon(0 0, 60% 0, 40% 100%, 0 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-left: 5%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: slideInLeft 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInLeft 1s ease 0.3s both;
}

.hero-buttons {
    animation: slideInLeft 1s ease 0.6s both;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 20% 100%);
}

/* Floating Cards About Section */
.about-section {
    padding: 120px 0;
    background: var(--soft-cream);
    position: relative;
}

.floating-card {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(107, 70, 193, 0.1);
    transform: translateY(-50px);
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-60px);
    box-shadow: 0 30px 80px rgba(107, 70, 193, 0.2);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

/* Hexagonal Why Choose Us */
.why-choose-section {
    padding: 120px 0;
    background: var(--dark-navy);
    color: white;
}

.hexagon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.hexagon-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hexagon-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.hexagon-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

/* Accordion Style Services */
.services-section {
    padding: 10% 0;
    background: var(--light-lavender);
}

.service-pg{
    background: var(--light-lavender);
}

.service-accordion {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    width:100%;
}

.service-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    cursor: pointer;
    /* display: flex; */
    /* justify-content: between; */
    /* align-items: center; */
    transition: all 0.3s ease;
}

.service-header:hover {
    background: var(--gradient-secondary);
}

.service-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-content.active {
    padding: 2rem;
    max-height: 100%;
}

.service-content.service-pg {
    padding: 2rem;
    max-height:100%;
}

/* Responsive styles */
@media (max-width: 768px) {
    .service-content.active {
        padding: 1.5rem;
    }

    .service-content.service-pg {
        padding: 1.5rem;
        max-height: 100%;
    }
}

@media (max-width: 480px) {
    .service-content.active {
        padding: 1rem;
    }

    .service-content.service-pg {
        padding: 1rem;
        max-height: 100%;
    }
}

.service-item {
    /* display: flex; */
    /* justify-content: between; */
    /* align-items: center; */
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.service-item:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .service-item > div:last-child {
        margin-top: 0.5rem;
    }
}

/* For tablets (768px and up) */
@media (max-width: 768px) {
    .services-section {
        padding: 15% 0;
    }
}

/* For small devices (up to 480px) */
@media (max-width: 480px) {
    .services-section {
        padding: 12% 0;
    }
}

/* Circular Team Cards */
.team-section {
    padding: 10% 0;
    background: white;
}

.team-card {
    text-align: center;
    position: relative;
}

.team-image-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
}

.team-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid transparent;
    background: var(--gradient-primary);
    
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 0.9;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.team-social a {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.team-social a:hover {
    transform: scale(1.2);
}

/* Masonry Gallery */
.gallery-section {
    padding: 10% 0;
    background: var(--soft-cream);
}

.gallery-pg{
    background: var(--soft-cream);
}

.masonry-grid {
    columns: 3;
    column-gap: 1rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 40vh;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    object-fit:cover
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 0.8;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Testimonial Slider */
.testimonial-section {
    padding: 120px 0;
    background: var(--dark-navy);
    color: white;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
}

.testimonial-card {
    text-align: center;
    padding: 2rem;
}

.testimonial-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--accent-gold);
    object-fit:cover;
}

/* Social Media Grid */
.social-section {
    padding: 120px 0;
    background: var(--light-lavender);
}

/* Split Contact Section */
.contact-section {
    padding: 0;
    margin-top: -100px;
    background: white;
}

.contact-info {
    background: var(--gradient-primary);
    color: white;
    padding: 5rem 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-pg{
    background: var(--gradient-primary);
}

.contact-form-wrapper {
    padding: 10rem 3rem;
    background: white;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.form-control, .form-select {
    border: none;
    border-bottom: 2px solid #eee;
    border-radius: 0;
    padding: 1rem 0;
    padding-left: 1rem;
    background: transparent;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-bottom-color: var(--primary-purple);
    box-shadow: none;
    background: transparent;
}

/* Gradient Footer */
.footer {
    background: var(--gradient-primary);
    /*background: var(--dark-navy);*/
    color: white;
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.4);
    background: var(--gradient-secondary);
}

.btn-outline-light {
    border: 2px solid white;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-purple);
    transform: translateY(-2px);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-nav {
        top: 10px;
        left: 10px;
        right: 10px;
        transform: none;
        border-radius: 20px;
    }

    .nav-items {
        display: none;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding-top: 1rem;
    }

    .nav-items.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .masonry-grid {
        columns: 1;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .hero-bg {
        clip-path: none;
        height: auto;
        background: var(--gradient-primary);
        position: relative;
    }

    .hero-image {
        clip-path: none;
        width: 100%;
        height: 280px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .hero-content {
        width: 100vw;
        padding: 2rem 0;
        background: var(--gradient-primary); /* or the solid color you want */
        box-sizing: border-box;
        text-align: center;
    }


    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn {
        width: 80%;
        font-size: 1rem;
    }
}


 /* Floating Navbar */
.floating-navbar {
  font-family: 'Poppins', sans-serif;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 15px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 1030;
    transition: all 0.3s;
}

.floating-navbar.scrolled {
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Brand */
.navbar-brand {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #1e293b !important;
    position: relative;
    padding: 0;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    transition: width 0.3s;
}

.navbar-brand:hover::after {
    width: 100%;
}

/* Navigation Links */
.nav-item {
    position: relative;
    margin: 0 5px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 400;
    padding: 8px 16px !important;
    border-radius: 15px;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
    background: var(--secondary-pink);
}
/* Dropdown */
.dropdown-menu {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    margin-top: 10px;
}

.dropdown-item {
    padding: 8px 25px;
    color: #1e293b;
    transition: all 0.3s;
    position: relative;
}

.dropdown-item:hover {
    background: var(--secondary-pink);
    color: white;
    padding-left: 30px;
}

/* Responsive */
@media (max-width: 991px) {
    .floating-navbar {
        padding: 10px 20px;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .navbar-toggler {
        border: none;
        padding: 8px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        background: #ffffff;
        margin-top: 15px;
        padding: 15px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .search-box {
        width: 100%;
        margin: 15px 0;
    }

    .search-box input,
    .search-box input:focus {
        width: 100%;
    }

    .nav-icons {
        justify-content: center;
        padding-top: 15px;
        border-top: 1px solid #e2e8f0;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 80px;
    }

    .floating-navbar {
        top: 10px;
        width: calc(100% - 20px);
        padding: 8px 15px;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

    .nav-icon {
        width: 30px;
        height: 30px;
    }
}

.logo{
    height:50px;
}

pre {
    overflow-x: auto; /* Horizontal scrolling for long content */
    white-space: pre-wrap; /* Wrap text while preserving formatting */
    line-height: 1.5; /* Improved line spacing */
    font-size: 16px; /* Comfortable font size */
    margin-bottom: 20px; /* Spacing from other elements */
    font-family: inherit;
}

.service-img {
  max-width:60vw;
  overflow: hidden;
  border-radius: 20px;
}
.service-img img{
    height: 50vh; 
    width: 100%; 
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-img img:hover {
  transform: scale(1.05);
}

.service-link{
  color: var(--sage-green);  
}

@media (max-width: 768px) {
  .service-img {
    max-width: 100vw;
  }
}

.img-fit {
  height: 250px; 
  object-fit: cover;
}



.social-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-section .view-icon {
  color: #fff;
  font-size: 30px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.social-section .social-icons {
  color: #fff;
  font-size: 30px;

}

.social-section .position-relative:hover .overlay {
  opacity: 1;
}

.social-section  .position-relative:hover .view-icon {
  transform: scale(1);
}

/* Remove default Bootstrap border-radius from card & image */
.social-section .card,
.social-section .card-img-top {
  border-radius: 0 !important;
}

/* description section */
.description-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

.image-block {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.image-block img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.content-block {
  padding: 4rem 2rem;
}

@media (max-width: 991.98px) {
  .description-section {
    flex-direction: column;
  }

  .image-block {
    position: relative;
    height: auto;
  }

  .image-block img {
    height: auto;
  }
}

textarea{
    resize:none;
}

/* description section */
.description-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

.image-block {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.image-block img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.content-block {
  padding: 4rem 2rem;
}

@media (max-width: 991.98px) {
  .description-section {
    flex-direction: column;
  }

  .image-block {
    position: relative;
    height: auto;
  }

  .image-block img {
    height: auto;
  }
}

.padding{
    padding-top:120px;
    padding-bottom:30px;
}
@media (max-width:768px){
    .padding{
        padding-top:60px;
        padding-bottom:30px;
    }
}