*{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

:root{
    --color-primary: #6c63ff;
    --color-success: #00bf8e;
    --color-warning: #f7c94b;
    --color-danger: #f75842;
    --color-danger-variant: rgba(247, 88, 66, 0.4);
    --color-white: #fff;
    --color-light: rgba(255, 255, 255, 0.7);
    --color-black: #000;
    --color-bg: #1f2641;
    --color-bg1: #2e3267;
    --color-bg2: #424890;
    
    --container-width-lg: 80%;
    --container-width-md: 90%;
    --container-width-sm: 94%;

    --transition: all 400ms ease;
}

body{
    font-family: "Montserrat", sans-serif;
    line-height: 1.7; 
}

.container{
    width: var(--container-width-lg);
    margin: 0 auto;
}

section{
    padding: 6rem 0;
}

section h2{
    text-align: center;
    margin-bottom: 4rem;
}

h1, h2, h3, h4, h5{
    line-height: 1.2;
}

h1{
    font-size: 2.4rem;
}

h2 {
    font-size: 2rem;
}

h3{
    font-size: 1.6rem;
}

h4{
    font-size: 2rem;
}

a{
    color: var(--color-white);
}

.btn{
    display: inline-block;
    background: var(--color-white);
    color: var(--color-black);
    padding: 1rem 2rem;
    border: 1px solid transparent;
    font-weight: 500;
    transition: var(--transition);
}

.btn:hover{
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-primary{
    background: var(--color-danger);
    color: var(--color-white);
}

/*================ NAVBAR =======================*/
nav{
    background: white;
    width: 100vw;
    height: 5rem;
    position: fixed;
    top: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    z-index: 11;
}

.window-scroll{
    background: var(--color-white);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.nav_container{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav_container a{
    align-items: center;
    display: flex;
    gap: .21rem;
}
.nav_container a img{
    width: 70px;
}

.nav_container a h4{
    color: #000;
}

.nav_container a h4 span{
    color: #EC5598;
}

nav button{
    display: none;
}

.nav_menu{
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.nav_menu a{
    color: #000;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav_menu a:hover{
    color: #EC5598;
}

/* ================== Video Banner =================== */
 .bg-video-section {
  position: relative;
  width: 100%;
  height: 100vh !important;
  overflow: hidden;
  display: flex;
  /*align-items: center;*/
  /*justify-content: center;*/
  margin-top: 0 !important;
  /* z-index: 1; */
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

@media screen and (max-width: 600px) {
    .bg-video-section {
     width: 100%;
    }
    
    .bg-video {
        width: 100%;
    }
}

/* ==================== MEDIA QUERIES(TABLETS) ==================== */
@media screen and (max-width: 1024px) { 
    .bg-video-section{
     margin-top: 0;
}
}

    /* ================== About Section =================== */

.about-section {
  padding: 60px 20px;
  margin-top: 1rem;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.about-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  color: #E91E63;
  font-style: italic;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
}

.about-text h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2C2C2C;
}

.about-text .desc {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
  margin-top: 1rem;
}

.btn-about {
    color: #fff;
    background: #E91E63;
    padding: 1rem 2rem;
    border: 1px solid transparent;
    font-weight: 600;
    border-radius: 2rem;
    font-size: 1.2rem;
    transition: 0.3s ease-in-out;
}

.btn-about:hover {
    background: #fff;
    color: #E91E63;
    font-weight: 600;
    border: 1px solid #E91E63;
}

.about-image {
  flex: 1 1 300px;
  position: relative;
  margin-top: 1.5rem;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 50%;
  object-fit: cover;
}

.circle {
  position: absolute;
  top: -20px;
  left: -20px;
  background: white;
  padding: 15px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.exp-number {
  font-size: 20px;
  font-weight: 700;
}

.exp-text {
  font-style: italic;
  font-size: 14px;
  color: #E91E63;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-text h1 {
    font-size: 28px;
  }

  .about-image {
    text-align: center;
  }
}

@media (max-width: 600px) {
    .about-container { 
        width: 100%;
    }
}

/* ==================== MEDIA QUERIES(TABLETS) ==================== */
@media screen and (max-width: 1024px) {
    .container{
        width: var(--container-width-md);
    }
    body{
        overflow-x: hidden;
    }
    h4{
        font-size: 1.9rem;
    }

    /* ==================== NAVBAR =================== */
    nav button{
        display: inline-block;
        background: transparent;
        font-size: 1.8rem;
        color: var(--color-black);
        cursor: pointer;
    }

    nav button#close-menu-btn{
        display: none;
    }

    .nav_menu{
        position: fixed;
        top: 5rem;
        right: 5%;
        height: fit-content;
        width: 18rem;
        flex-direction: column;
        gap: 0;
        display: none;
    }

    .nav_menu li{
        width: 100%;
        height: 5.8rem;
        animation: animateNavItems 400ms linear forwards;
        transform-origin: top right;
        opacity: 0;
    }

    .nav_menu li:nth-child(2){
        animation-delay: 200ms;
    }

    .nav_menu li:nth-child(3){
        animation-delay: 400ms;
    }
    .nav_menu li:nth-child(4){
        animation-delay: 600ms;
    }

    @keyframes animateNavItems {
        0%{
            transform: rotateZ(-90deg) rotateX(90deg) scale(0.1);
        }
        100%{
            transform: rotateZ(0) rotateX(0) scale(1);
            opacity: 1;
        }
    }

    .nav_menu li a{
        background: #EC5598;
        box-shadow: -4rem 6rem 10rem rgba(0, 0, 0, 0.6);
        width: 100%;
        height: 100%;
        display: grid;
        color: black;
        place-items: center;
    }

    .nav_menu li a:hover{
        background: var(--color-white);
        color: var(--color-black);

    }
}



/* ==================== MEDIA QUERIES(PHONES) ======================= */
    @media screen and (max-width: 600px) {
        .container{
            width: var(--container-width-sm);
        }

    /* ==================== NAVBAR ======================= */
    .nav_container a h4{
        font-size: 1.25rem;
        margin-left: 1rem;
    }
    
    .nav_menu{
        right: 3%;
    }
  }

  /* ==================== SERVICES SECTION ======================= */
.product_container {
    background: lightpink; /* Dark Theme */
    padding: 5rem 2rem;
    text-align: center;
}

/* HEADING STYLES */
.product_container h2 {
   font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.product_container h5 {
  font-family: 'Playfair Display', serif;
  color: #E91E63;
  font-style: italic;
  font-weight: bold;
  font-size: 2.2rem;
}

/* PRODUCT GRID */
.product_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
    margin-top: 1rem;
}

/* PRODUCT CARD */
.product_card {
    background: #fffaf0;
    border-radius: 12px;
    overflow: hidden;
    padding: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* MAKE ALL IMAGES SAME SIZE */
.product_card img {
    width: 100%;
    height: auto; /* Fixed Height for Uniformity */
    object-fit: cover; /* Prevents distortion */
    border-radius: 8px;
    background-position: center;
    transition: transform 0.3s ease;
}

/* HOVER EFFECT */
.product_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(146, 2, 69, 0.952);
}

.product_card:hover img {
    transform: scale(1.05);
}

/* PRODUCT TITLE */
.product_card h4 {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #E91E63;
    font-weight: bold;
}

/* =================== RESPONSIVE DESIGN =================== */

/* Tablets (1024px) */
@media screen and (max-width: 1024px) {
    .product_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .product_container h2 {
        font-size: 2.5rem;
    }

    .product_container p {
        font-size: 1.1rem;
    }
}

/* Mobile Screens (600px) */
@media screen and (max-width: 600px) {
    .product_grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .product_container h2 {
        font-size: 2rem;
    }

    .product_container p {
        font-size: 1rem;
    }

    .product_card {
        padding: 1rem;
    }

    /* Fix for Small Screen Images */
    .product_card img {
        height: auto; 
        max-height: 350px; 
        width: 100%;
        object-fit: cover; 
    }
}

/* ==================== WHY CHOOSE US ================= */

.image-column {
  flex: 1 1 50%;
  max-height: 100vh;
  overflow: hidden;
}

.image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-column {
  flex: 1 1 50%;
  padding: 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.icon {
  font-size: 30px;
  color: #E91E63;
  margin-right: 15px;
  min-width: 40px;
}

h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

p {
  font-size: 0.95rem;
  color: #444;
}

/* Responsive Design */
@media (max-width: 768px) {
  .containers {
    flex-direction: column;
  }

  .image-column, .content-column {
    flex: 1 1 100%;
    max-height: none;
  }

  .content-column {
    padding: 20px;
  }
}


/* ==================== FOOTER ================= */
footer{
    background-color: lightpink;
    color: #000;
    padding-top: 3rem;
    font-size: 0.9rem;
}

.footer_container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer_container > div h4{
    margin-bottom: 1rem;
    color: #000;
}

.footer_1 p{
    margin: 0 0 2rem;
}

footer ul li{
    margin-bottom: 0.7rem;
}

footer ul li a{
  color: #000;
}

footer ul li a:hover{
    text-decoration: underline;
}

.footer_socials{
    display: flex;
    gap: .91rem;
    font-size: 2rem;
    margin-top: 1.2rem;
}

.footer_socials i{
    border-radius: 60%;
    padding: .21rem;
    border: 1px solid rgb(222, 222, 222);
    color: white;
}

.footer_copyright{
    color: #000;
    text-align: center;
    margin-top: 1rem;
    padding: 1.2rem 0;
    border-top: 1px solid rgb(209, 209, 209);
}

/* ==================== MEDIA QUERIES(TABLETS) ==================== */
@media screen and (max-width: 1024px) { 
    /* ==================== FOOTER ======================= */
.footer_container{
    grid-template-columns: 1fr 1fr;
}
}

@media screen and (max-width: 768px) { 
     footer {
    background-image: url('../images/bg1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}


   /* ==================== MEDIA QUERIES(PHONES) ======================= */
    @media screen and (max-width: 600px) {
footer {
    background-image: url('../images/bg1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .footer_container{
    grid-template-columns: 1fr;
    gap: 1rem;
}

.footer_1 p{
    margin: 1rem auto;
}

.footer_socials{
    justify-content: center;
}   
    }

    .whts-foot, 
.phn-foot {
    width: 60px; /* Ensure both buttons are the same size */
    height: 60px; 
    position: fixed;
    right: 10px;
    border-radius: 50%; /* Make it a perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add subtle shadow for better visibility */
}

.whts-foot {
    bottom: 200px;
    background: #25D366; /* WhatsApp green color */
}

.phn-foot {
    bottom: 270px;
    background: #E91E63; /* Phone button color */
}

/* Image Styling */
.whts-foot img,
.phn-foot img {
    width: 40px;  /* Adjust size to fit inside the circle */
    height: 40px;
    z-index: 1; /* Ensure image stays on top */
    position: relative;
}