@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;

}
:root{
    --primary-color: #a02059;
    --footer-color: #661331;
    --footer-color2: #7c173b;
    --secondary-color: #5bc343;
    --third-color: #214c21;
    --content-color: #000000;
    --heading-color: #ccc2c2;
    
}
:root {
    font-family: 'Poppins', sans-serif;
}

body {

    overflow-x: hidden;

}

/* Top Navbar */
     .top-navbar {
        background-color: var(--footer-color);
        color: white;
        font-size: 0.9rem;
        padding: 5px 0;
        height: 50px;
    }

    @media (max-width: 768px) {
        .top-navbar {
            display: none;
        }
    }
    @media (min-width: 480px) {
        .top-navbar {
            display: none;
        }
    }

    .top-navbar a {
        color: white;
        width: 10px;
        text-decoration: none;
        margin-left: 25px;
    }

    /* Main Navbar */
    .navbar {
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* Logo */
    .navbar-brand img {
        height: 53px;
    }

    /* Navbar Links */
    .nav-link {
        margin-left: 50px;
        font-weight: 450;
        letter-spacing: 1px; 
        font-size: 0.93rem;
        font-family: 'Poppins', sans-serif;
        color: #a02059;
        text-decoration: none;
        text-transform: capitalize;
    }
    
    /* Medium devices (tablets, 768px and up) */
    @media (max-width: 768px) {
        .nav-link {
            margin-left: 20px;
            font-size: 0.6em;
        }
    }
    @media (max-width: 1366px) {
        .nav-link {
          margin-left: 30px;
          font-size: 0.8em;
        }
      }
      
    
    /* Small devices (phones, 480px and down) */
    @media (max-width: 480px) {
        .nav-link {
            margin-left: 10px;
            font-size: 0.8em;
            letter-spacing: 0.5px;
        }
    }
    

    .nav-link:hover {
        color:  #a02059;
    }

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #a02059;
    color: #fff;
    width: 230px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(160, 32, 89, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}


/* Dropdown Menu Items */
.dropdown-menu a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    padding: 10px;
    transition: background 0.3s ease;
}

/* Icon Styling */
.dropdown-menu a img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

/* Hover Effect */
.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Dropdown Item Style */
.dropdown-item {
    color: whitesmoke;
    font-weight: bolder;
    letter-spacing: 0;
}

.dropdown-item:hover {
    background-color: rgb(91, 5, 28);
    border-radius: 30px 0px 30px 0px;
    color: antiquewhite;
    box-shadow: 0 0 10px #a02059;
}

/* Optional: Show dropdown on hover without click (for navbars) */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
}

/*contact btn*/
.contatus {
    position: relative;
    padding: 13px 23px;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgb(255, 255, 255);
    background-color: #a02059;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 40px;
    overflow: hidden;
    z-index: 1;
    margin-left: 20px;
  }
  
  /* The animated border effect */
  .contatus::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    /* background: linear-gradient(45deg, red, blue, green, yellow, red); */
    z-index: -1;
    border-radius: 12px;
    filter: blur(4px);
    animation: borderAnimation 3s linear infinite;
  }
  
  /* Inner button to maintain solid background */
  .contatus::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    /* background:linear-gradient(120deg, #a02059,black) ; */
    z-index: -1;
    border-radius: 6px;
  }
  @keyframes borderAnimation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
/*hero section with breadcrumb section-1*/


.container-1 {
    background: linear-gradient(120deg, #fff6fa, rgb(255, 255, 255));
    color: rgb(151, 44, 44);
    backdrop-filter: blur(50px);
    padding: 10px;
    height: 450px;
    margin-bottom: 5px;
}
.hero-section-gradient {
    background: linear-gradient(to right, #8a2d4d, #e67e22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "poppins", sans-serif;
    margin:100px;
}
.hero-breadcrumb{
  font-size: 18px;
  margin-top: 70px;
  margin-bottom: -60px;
  margin-left: 80px;
  font-weight: 600;
}
.hero-breadcrumb a{
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.bread-crumb-bold a{
    background: linear-gradient(to right, #8a2d4d, #e67e22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-section-gradient h1{
    font-size: 2.6rem;
    font-weight: 600;
    width: 60%;
    font-weight: bolder;
    text-align: left;
    margin-left: 50px;
    margin-top: 50px;
    font-family: "poppins", sans-serif;

}


.hero-paragraph{
    color: #333;
    font-size: 1.6;
    line-height: 1.5;
    text-align: left;
    margin-left: 150px;
    margin-top: -70px;
    width: 58%;
    font-family:"poppins", sans-serif;
    font-weight: 400;
    z-index: 4;
}
.contatus-1{
    position: absolute;
    top: 390px;
    font-family: "poppins", sans-serif;
    font-weight: 300;
    left:140px;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    background-color: #a02059;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
    margin-left: 20px;
}
@media screen and (max-width: 1024px) {
    .hero-section-gradient {
        margin: 80px 20px;
    }

    .hero-section-gradient h1 {
        font-size: 40px;
        margin-left: 20px;
        text-align: center;
        width: 100%;
    }

    .hero-paragraph {
        font-size: 20px;
        margin-left: 180px;
        width: 100%;
    }
    .hero-breadcrumb {
        font-size: 16px;
        margin-top: 50px;
        margin-left: 20px;
        text-align: center;
    }

    .contatus-1 {
        top: auto;
        left: auto;
        position: relative;
        display: block;
        text-align: center;
        margin: 15px auto;
        padding: 10px 25px;
        margin-top: -30px;
    }
}

@media screen and (max-width: 768px) {
    .container-1 {
        height: auto;
        padding: 20px;
    }

    .hero-section-gradient {
        margin: 50px 15px;
        text-align: center;
    }

    .hero-section-gradient h1 {
        font-size: 32px;
        margin-left: 0;
        width: 100%;
    }
    .hero-paragraph {
        font-size: 18px;
        margin-left: 80px;
        margin-top: -50px;
        width: 100%;
    }

    .hero-breadcrumb {
        font-size: 15px;
        margin: 20px auto;
        text-align: center;
        margin-left: 0;
    }

    .contatus-1 {
        font-size: 14px;
        padding: 10px 20px;
        margin-top: -30px;
    }
}

@media screen and (max-width: 480px) {
    .hero-section-gradient h1 {
        font-size: 25px;
        content: justify;
        list-style-type: square;
        width: 100%;
    }

    .hero-paragraph {
        font-size: 16px;
        margin-left: 10px;
        margin-top: 0px;
        text-align: justify;
        width: 100%;
    }

    .hero-breadcrumb {
        font-size: 14px;
    }

    .contatus-1 {
        font-size: 13px;
        padding: 8px 18px;
        margin-top: 10px;
    }
}


/*second section*/


.seo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    padding: 50px 10px;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #000;
}

.seo-container {
    display: flex;
    max-width: 1204px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 135px;
}

.seo-heading {
    flex: 1;
    text-align: left;
}

.seo-heading h1 {
    font-size: 1.88rem;
    font-weight: 650;
    line-height: 1.2;
    text-align: left;
    margin-left: -10px;
    font-family: "poppins", sans-serif;
}

.seo-heading h1 span {
    color: #ffb400;
}

.seo-content {
    flex: 2;
}

.seo-content p {
    font-size: 16px;
    line-height: 1.65;
    color: #333;
    text-align: justify;
    font-family: "poppins", sans-serif;
    font-weight: 90px;
    font-weight: 390;
}

.highlight {
    color: #a02059;
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .seo-container {
        flex-direction: column;
        text-align: left;
        gap: 80px;
        
    }

    .seo-heading h1 {
        font-size: 36px;
        text-align: center;
        margin-left: 0;
    }

    .seo-content p {
        font-size: 15px;
        font-family: 'Poppins', sans-serif;
    }
}

@media (max-width: 768px) {
    .seo-heading h1 {
        font-size: 30px;
        text-align: center;
    }

    .seo-content p {
        font-size: 14px;
        font-family: 'Poppins', sans-serif;
    }
}

@media (max-width: 480px) {
    .seo-heading h1 {
        font-size: 26px;
        text-align: center;
    }

    .seo-content p {
        margin-top: -20px;
        font-size: 15.5px;
        font-family: 'Poppins', sans-serif;
    }
}



/*third section*/

#card-row{
    margin-bottom: 9rem;
}
@media screen and (max-width: 768px) {
    #card-row{
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 480px) {
    #card-row{
        margin-bottom: 1rem;
    }
}
.section-heading {
    text-align: left;
    margin-top: 100px;
    margin-bottom: 50px;
}
.section-heading h2 {
    font-weight: 600;
    font-family: "poppins", sans-serif;
}
.section-heading p {
    font-weight: 300;
    font-family: "poppins", sans-serif;
}
.section-heading span {
    color: #fdb813;
}
.card-custom {
    background-color:white;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 100%;
    font-family: "poppins", sans-serif;
}
.card-custom p{
    font-family: "poppins", sans-serif;
    font-weight: 300;
    font-size: 0.96rem;
    text-align: justify;
    
}
.card-custom img {
    width: 25px;
    height: 25px;
    padding: 3px;
}
.card-custom:hover {
    transform: translateY(-10px);
}
.icon {
    font-size: 24px;
    color: #fdb813;
    margin-bottom: 10px;
}
.row > div {
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 768px) {
    #about{
        margin-top: -50px;
    }

    .section-heading {
        text-align: left;
        margin-top: 7px;
        margin-bottom: 50px;
    }
    
}


/*fourth section*/

.svc-accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    background: none;
    border: none;
    text-align: left;
    padding: 15px;
    color:#000000
}

.icon {
    margin-left: 10px; /* Adds spacing between text and icon */
    font-size: 24px;
    font-weight: bold;
    color: #a0183a;
}
.svc-services-container {
    padding: 180px 150px;
}

.svc-services-title {
    font-weight: 450;
    font-family: "poppins", sans-serif;
    font-size: 2.0rem;
    color: black; /* Keeps "Our" in black */
}

.gradient-text {
    background: linear-gradient(to right, #8a2d4d, #e67e22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.svc-services-description{
    width: 70%;
    font-family: "poppins", sans-serif;
    font-weight: 300;
    font-size: 1.0rem;
    margin-top: 20px;
    text-align: justify;

}



.svc-work-btn {
    background-color: #a02059;
    color: white;
    font-weight: 600;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    width: 50%;
    text-align: center;
    margin-top: 60px;
}

.svc-work-btn:hover {
    background-color: #88174a;
}

/* Accordion Styling */
.svc-accordion-item {
    border: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 4px;
    box-shadow: 10px 10px 20px rgba(255, 255, 255, 0.1);
}

.svc-accordion-button {
    font-size: 18px;
    background-color: transparent;
    font-weight: 600;
    width: 100%;
    text-align: left;
    padding: 1rem;
    border: none; /* Removed invalid border value #75072a */
}

.svc-accordion-button:not(.collapsed) {
    color: #a0183a;
    background-color: transparent;
    box-shadow: none;
}

.svc-accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.svc-accordion-body {
    padding: 1rem;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .svc-services-container {
        padding: 65px 10px;
    }

    .svc-services-title {
        font-size: 24px;
        text-align: center;
    }

    .svc-services-description{
        width: 100%;
        text-align: center;

    }
    
    

    .svc-work-btn {
        width: 100%;
        margin-bottom: 20px;
    }

    .svc-accordion-button {
        font-size: 16px;
    }
}

/*section five*/

.section-five-seo-container-2 {
    max-width: 1300px;
    margin: 0 auto;
    /* Maroon background */
    color: white;
    padding: 40px;
    font-family: Arial, sans-serif;
}

.section-five-seo-main-heading {
    font-size: 39px;
    font-weight: bold;
    margin-bottom: 40px;
}

.section-five-seo-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.section-five-seo-column {
    flex: 1;
}

.section-five-seo-number {
    font-size: 40px;
    font-weight: 100;
    color: #F5A623; /* Orange color for numbers */
    margin-bottom: 10px;
}

.section-five-seo-title {
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-five-seo-description {
    font-size: 16.0px;
  text-align: justify;
    line-height: 1.6;
    font-weight: 250;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-five-seo-container {
        padding: 20px; /* Reduce padding on smaller screens */
    }

    .section-five-seo-main-heading {
        font-size: 28px; /* Smaller heading for tablets and mobile */
        margin-bottom: 30px;
    }

    .section-five-seo-content {
        flex-direction: column; /* Stack columns vertically */
        gap: 30px; /* Reduce gap between stacked columns */
    }

    .section-five-seo-number {
        font-size: 36px; /* Smaller number size */
    }

    .section-five-seo-title {
        font-size: 20px; /* Smaller title size */
        margin-bottom: 15px;
    }

    .section-five-seo-description {
        font-size: 14px; /* Slightly smaller text for readability */
    }
}

@media (max-width: 480px) {
    .section-five-seo-container {
        padding: 15px; /* Further reduce padding for mobile */
    }

    .section-five-seo-main-heading {
        font-size: 24px; /* Even smaller heading for mobile */
        margin-bottom: 20px;
    }

    .section-five-seo-content {
        gap: 20px; /* Further reduce gap for mobile */
    }

    .section-five-seo-number {
        font-size: 30px; /* Smaller number for mobile */
    }

    .section-five-seo-title {
        font-size: 18px; /* Smaller title for mobile */
        margin-bottom: 10px;
    }

    .section-five-seo-description {
        font-size: 13px; /* Smaller text for mobile */
    }
}

/*section six*/

.review-container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    height: 500px;
}
.review-card {
    padding: 20px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-align: center;
}
.review-card:hover {
    transform: translateY(-5px);
}
.stars {
    color: #ff9800;
    font-size: 1.2rem;
}
/* Remove background from controls */
.carousel-control-prev,
.carousel-control-next {
    width: auto;
    margin: -45px;
 
}
@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background: none;
    color: rgb(230, 13, 13);
    font-size: 34px;
    z-index: 100;
}
.carousel-indicators {
    margin-top: 20px;
}
.carousel-indicators button {
    background: none;
    border: 2px solid red;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
}
.carousel-indicators .active {
    background-color: red;
}

@media screen and (max-width: 768px) {
    .review-container {
        height: auto;
    }
    
}


/*contact form*/

.section-seven.contact-wrapper {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
    position: relative;
    margin: 0 auto; /* Centering the form */
    margin-bottom: 100px;
}

.section-seven.contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-top: 8px solid #ffd700;
    border-right: 8px solid #ffd700;
}

.section-seven.contact-wrapper::before {
    border-radius: 09px 0px 08px 0px;
}
.section-seven.contact-wrapper::after{
    border-radius: 09px 0px 08px 0px;

}
.section-seven.contact-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 90px;
    border-bottom: 8px solid #a10035;
    border-left: 8px solid #a10035;
}

.section-seven h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.section-seven p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.section-seven .highlight {
    color: #a10035;
}

.section-seven label {
    font-size: 0.9rem;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.section-seven textarea,
.section-seven input[type="text"],
.section-seven input[type="email"],
.section-seven input[type="tel"],
.section-seven input[type="url"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.section-seven textarea {
    height: 100px;
    resize: none;
}

.section-seven .row-group {
    display: flex;
    gap: 20px;
}

.section-seven .field-wrapper {
    flex: 1;
}

.section-seven .checkbox-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.section-seven .checkbox-wrapper input {
    margin-right: 10px;
}

.section-seven .checkbox-wrapper label {
    font-size: 0.9rem;
    color: #333;
}

.section-seven .checkbox-wrapper a {
    color: #a10035;
    text-decoration: none;
}

.section-seven button {
    background-color: #a10035;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    margin: 0 auto; /* Centering button */
}

.section-seven button:hover {
    background-color: #8b002d;
}
   


.section-seven .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 2rem;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
}

.section-seven .whatsapp-float:hover {
    background-color: #1EBE5D;
}


/*seventh section footer*/


/*  Custom styles for the newsletter section */
.newsletter-container {
    text-align: center;
    background-color: var(--footer-color);
    /* background-color: #88174a; */
    padding: 70px 0;
    height: 30vh;
}
.newsletter-title {
    color: white;
    font-weight: 550;
    margin-bottom: 20px;
    font-size: 1.5rem;
}
.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: auto;
    border-radius: 5px;
    overflow: hidden;
    background-color: white;
}
.newsletter-form input {
    flex: 1;
    border: none;
    padding: 10px;
    outline: none;
}
.newsletter-form button {
    background-color: #f5a623;
    border: none;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
}
.newsletter-form button:hover {
    background-color: #e5941d;
}
@media(max-width: 768px){
    .newsletter-container{
        height: 40vh;
    }   
    
    .newsletter-form {
        display: flex;
        max-width: 350px;
        margin: auto;
        border-radius: 5px;
        overflow: hidden;
        background-color: white;
    }
}


/*footer*/

footer {
    background-color: var(--footer-color2);
    color: white;
    padding: 40px 0;
}
footer a {
    color: white;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
footer .line {
    border-top: 1px solid #fff;
    margin: 20px 0;
}
.footer-logo img {
    max-width: 150px;
}
.footer-social-icons a {
    margin-right: 15px;
}
.footer-title {
    font-weight: bold;
    margin-bottom: 15px;
}
.footer-column a {
    display: block;
    margin-bottom: 10px;
}
.col-md-3 p{
    font-style: italic;
    color: whitesmoke;
    text-align: left;
}
.footer-bottom {
    font-size: 14px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p{
    color: whitesmoke;
}
.right-social{
    display: flex;
    gap: 15px;
    justify-items: right;
}
.right-social .google{
    width: 100px;
    height: 100px;
}

.right-social .meta{
    width: 100px;
    height: 100px;
}

