﻿
html {
  scroll-behavior: smooth;
} 
body {
            /*font-family: 'Poppins', sans-serif;*/
            scroll-behavior: smooth;
            font-family: "Open Sans", sans-serif;
        }

        /* Navbar */
        .navbar {
            background-color: #fbfbfb;
            padding: 1rem 0;
            transition: all 0.3s ease-in-out;
            box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
        }

        .navbar-shrink {
            padding-top: 0.3rem !important;
            padding-bottom: 0.3rem !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.6rem;
            color: #e91e63 !important;
        }

        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }

            .navbar-nav .nav-link:hover,
            .navbar-nav .nav-link.active {
                color: #e91e63 !important;
            }

        /* Hero Slide Fix */
        .hero-slide {
            height: 100vh;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 20px;
        }

            .hero-slide h1 {
                font-size: 4rem;
                font-weight: 700;
                color: #fff;
            }

            .hero-slide p {
                font-size: 1.3rem;
                margin-bottom: 30px;
                color: #fff;
            }

        .btn-primary {
            background-color: #e91e63;
            border: none;
        }

            .btn-primary:hover {
                background-color: #d81b60;
            }

        /* Section Titles */
        .section-title {
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #333;
        }

        /* Cards */
        .card {
            border: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

            .card:hover {
                transform: translateY(-10px);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            }

        /* Gallery */
        .gallery img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

            .gallery img:hover {
                transform: scale(1.05);
            }

        /* Contact */
        #contact {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 40px;
        }

        .form-control,
        .form-select {
            border-radius: 8px;
        }

        /* Footer */
        /* General Footer Styles */
.dark-footer {
  /*background-color: #0f0f0f;*/
  color: black;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  /*background: #f6f4f4;*/
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

/* Footer Sections */
.footer-section {
  flex: 1 1 220px;
  min-width: 220px;
  animation: fadeIn 1s ease-in-out;
}

.footer-section h3,
.footer-section h4 {
  color: black;
  margin-bottom: 10px;
}

.footer-section p,
.footer-section a {
  color: black;
  font-size: 14px;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: black;
  transform: translateX(4px);
}

/* Social Media Icons */
.footer-section.social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 20px;
  color:black;
  transition: transform 0.3s, color 0.3s;
}

.footer-section.social a:hover {
  color: black;
  transform: scale(1.2);
}

/* Bottom Footer */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 13px;
  color: black;
}

.footer-bottom a {
  color: black;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: black;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 25px;
  }
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


        /* Animation */
        [data-aos] {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease-in-out;
        }

            [data-aos].aos-animate {
                opacity: 1;
                transform: none;
            }

            .section-title {
    text-align: center;
    padding-bottom: 30px;
}

    .section-title h2 {
        font-size: 13px;
        letter-spacing: 1px;
        font-weight: 700;
        padding: 8px 20px;
        line-height: 1;
        margin: 0;
        background: #fdeff2;
        color: #e43c5c;
        display: inline-block;
        text-transform: uppercase;
        border-radius: 50px;
    }

    .section-title h3 {
        margin: 15px 0 0 0;
        font-size: 32px;
        font-weight: 700;
    }

        .section-title h3 span {
            color: #e43c5c;
        }

    .section-title p {
        margin: 15px auto 0 auto;
        font-weight: 600;
    }

@media (min-width: 1024px) {
    .section-title p {
        width: 50%;
    }
}
/**WhatsAP**/
/*New WhatsApp Icon 22/03/2024*/
.floating_btn a {
    text-decoration: none;
}

.floating_btn {
    position: fixed;
    bottom: 64px;
    right: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    /*font-family: sans-serif;*/
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}


.text_icon {
    margin-top: 8px;
    color: #707070;
    font-size: 13px;
}
/***/

.about-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  font-family: 'Segoe UI', sans-serif;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.about-image {
  flex: 1 1 40%;
  min-width: 300px;
  max-height: 100%;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content {
  flex: 1 1 60%;
  padding: 40px;
  background-color: #fff;
}

.about-content h2 {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-image, .about-content {
    flex: 1 1 100%;
  }

  .about-content {
    padding: 20px;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-content p {
    font-size: 16px;
  }
}

/*Back to top**/
.back-to-top-fixed {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #2c3e50;
  color: #fff;
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.back-to-top-fixed:hover {
  background-color: #1a252f;
}
