:root {
    --primary: #8f94fb;
    --primary-dark: #4e54c8;
    --secondary: #ff9a9e;
    --accent: #fbc2eb;
    --light: #f8f9fa;
    --dark: #212529;

    --primary: #782462;
    --primary-dark: #0b0a10;
    --secondary: #d6201d;
    --accent: #fbc2eb;
    --light: #f8f9fa;
    --dark: #212529;
}



body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    overflow-x: hidden;
    background-color: #fefefe;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Header / Hero */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: #fff;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
        url('https://images.pexels.com/photos/27355924/pexels-photo-27355924.jpeg?_gl=1*1e6c7xm*_ga*MTczNjUwNzkzOS4xNzUzMTc0NTQz*_ga_8JE65Q40S6*czE3NTUwMDc3MjAkbzE2JGcxJHQxNzU1MDA5NDQwJGo1MiRsMCRoMA..') center/cover no-repeat fixed !important;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(143, 148, 251, 0.3), rgba(78, 84, 200, 0.2));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.logo-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    gap: 0.8rem;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.logo-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    transition: all 0.4s ease;
    padding: 1rem 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    backdrop-filter: blur(10px);
    /* background: rgba(78, 84, 200, 0.95) !important; */
}

.nav-link {
    position: relative;
    margin: 0 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Cards */
.service-card {
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 16px;
    padding: 2rem;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: height 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    height: 10px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    box-shadow: 0 4px 15px rgba(143, 148, 251, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(143, 148, 251, 0.6);
}

.btn-outline-light {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-light:hover {
    color: var(--primary-dark) !important;
}

.btn-outline-light::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.btn-outline-light:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Section styling */
section {
    padding: 6rem 0;
    position: relative;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

/* Gallery collage grid */
.collage {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 150px;
    gap: 15px;
}

.collage .item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-bottom: 15px;
    padding: 15px;
}

.collage .item img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    transition: all 0.6s ease;
}

.collage .item:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.collage .item:hover img {
    transform: scale(1.1);
}


.collage .item:hover::after {
    opacity: 1;
}

.collage .span2 {
    grid-column: span 2;
}

.collage .span3 {
    grid-column: span 3;
}

.collage .span4 {
    grid-column: span 4;
}

.collage .span6 {
    grid-column: span 6;
}

/* Contact card */
.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* Form inputs */
.form-control {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(143, 148, 251, 0.25);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    padding: 3rem 0;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
    margin-top: -3rem;
}

/* Floating elements */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Pulse animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(143, 148, 251, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(143, 148, 251, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(143, 148, 251, 0);
    }
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* #heroBtns{
    display: grid !important;
  } */

/* small responsive tweaks */
@media (max-width: 992px) {
    .hero {
        min-height: 70vh;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    }

    .collage {
      display: block;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    footer {
        clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    }
}

@media (max-width: 768px) {
  .heroBtns{
    display: none !important;
  }
    section {
        padding: 4rem 0;
    }

    .hero {
        min-height: 60vh;
        text-align: center;
        clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%);
        
    }

    .hero .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .collage {
      display: block !important;
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    footer {
        clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
        text-align: center;
    }

    footer .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animated background elements */
.animated-bg-element {
    position: absolute;
    z-index: 1;
    overflow: hidden;
}

.animated-bg-element-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(143, 148, 251, 0.05), rgba(78, 84, 200, 0.05));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.animated-bg-element-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 154, 158, 0.05), rgba(250, 208, 196, 0.05));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: 10%;
    right: 5%;
    animation: float 10s ease-in-out infinite;
}

.animated-bg-element-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(143, 148, 251, 0.03), rgba(78, 84, 200, 0.03));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 10%;
    right: 5%;
    animation: float 8s ease-in-out infinite;
}

/* Wave shape for hero section */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    transform: rotate(180deg);
}

.hero-wave path {
    fill: #FFFFFF;
}



/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-buttons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.floating-buttons a.btn-success {
    background: #25D366; /* WhatsApp brand color */
    border-color: #25D366;
}

.floating-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 80px;
        right: 15px;
    }
    
    .floating-buttons a {
        width: 45px;
        height: 45px;
    }
}



/* Base Styles */
/* :root {
  --primary: #8f94fb;
  --primary-dark: #4e54c8;
  --secondary: #ff9a9e;
  --accent: #fbc2eb;
  --light: #f8f9fa;
  --dark: #212529;
} */

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  overflow-x: hidden;
  background-color: #fefefe;
}

/* Header/Navbar */
.navbar {
  transition: all 0.4s ease;
  padding: 1rem 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
}

.navbar.scrolled {
  padding: 0.5rem 0;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

/* Sections */
section {
  padding: 6rem 0;
}

/* Cards */
.service-card {
  transition: all 0.3s ease;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

/* Footer */
footer {
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
}

/* =============== Responsive Styles =============== */
@media (max-width: 1399.98px) {
  /* XXL devices */
}

@media (max-width: 1199.98px) {
  /* XL devices */
  .hero {
    min-height: 80vh;
  }
}

@media (max-width: 991.98px) {
  /* LG devices */
  section {
    padding: 4rem 0;
  }
  
  .hero {
    min-height: 70vh;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  }
  
  footer {
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
  }
}

@media (max-width: 767.98px) {
  /* MD devices */
  .hero {
    min-height: 60vh;
    clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%);
    text-align: center;
  }
  
  .hero .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  footer {
    padding: 15px;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
    text-align: center;
  }
  
  footer .d-flex {
    flex-direction: column;
    gap: 1rem;

    flex-direction: row !important;
    gap:1rem !important;
  }
}

@media (max-width: 575.98px) {
  /* SM devices */
  .navbar-brand {
    font-size: 1rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  section {
    padding: 3rem 0;
  }
}




/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Carousel Fix */
.hero .owl-carousel {
  display: block !important; /* Override any hiding behavior */
}

@media (max-width: 767.98px) {
  .hero {
    min-height: 60vh;
    text-align: center;
  }
  
  .hero .owl-carousel .item img {
    max-height: 300px;
    width: auto;
    margin: 0 auto;
  }
  
  .hero .owl-carousel {
    margin-top: 30px;
    padding: 0 15px;
  }
}





/* Footer Section */
footer {
  text-align: left; /* Reset alignment */
}

.footer-column {
  padding: 0 15px;
}

@media (max-width: 767.98px) {
  footer {
    text-align: left; /* Keep left-aligned on mobile */
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
  }
  
  .footer-column {
    margin-bottom: 30px;
    padding: 0;
  }
  
  .footer-column:last-child {
    margin-bottom: 0;
  }
  
  /* Specific alignment for contact info */
  .footer-contact-info {
    display: inline-block;
    text-align: left;
  }
}




@media (max-width: 575.98px) {
  .hero .owl-carousel .item img {
    max-height: 250px;
  }
  
  .hero-content {
    padding-top: 30px;
  }
}


@media (max-width: 991.98px) {
  .footer-column {
    margin-bottom: 20px;
  }
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-info i {
  margin-top: 3px; /* Better icon alignment */
}






















