@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;
}
: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;
  font-family: "poppins", sans-serif; 
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1 ;


  
    }
    
    
/* Top Navbar */
    /* .top-navbar {*/
    /*    background-color: #a02059;*/
    /*    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: 55px;
    }

    /* Navbar Links */
    .nav-link {
        margin-left: 45px;
        font-weight: 800;
        letter-spacing: 1px; 
        font-size: 0.8rem;
        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.9rem;
            font-weight:bolder;
            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 Arrow */
/*.dropdown-menu::before {*/
    /*content: "";*/
    /*position: absolute;*/
    /*top: -10px;*/
    /*left: 200px;*/
    /*width: 0;*/
    /*height: 0;*/
    /*border-left: 10px solid transparent;*/
    /*border-right: 10px solid transparent;*/
    /*border-bottom: 10px solid #a02059;*/
/*}*/

/* 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: 20px;
    height: 20px;
    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: 10px 20px;
    font-size: 0.5rem;
    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*/
 
  #particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1; /* Sends particles to the background */
    top: 0;
    left: 0;
}




  .hero-section {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    padding: 150px;
    color: whitesmoke;
    
    /* Background Image */
    /* background-image: url('banner.png'); Replace with your image */
    background:linear-gradient(120deg, #a02059) ;
    /* background-color: #f6f5f3; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Positioning */
    position: relative;
    z-index: 2; /* Ensure hero section stays above particles */
}

/* Optional: Dark Overlay to Improve Visibility */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   /* Adjust for transparency */
    z-index: -1; /* Keeps overlay above background but behind content */
}


.sub-tittle {
    display: block; /* Ensures the element takes full width */
    text-align: left; /* Aligns text to the left */
    margin-top: 25px;
    font-family: "Poppins", sans-serif;

    width: 47%;
    line-height: 49px;
    font-size: 2.6rem;
    font-weight: 600;
    color: #ffffff;
}

.sub-tittle-2 {
    display: block; /* Ensures the element takes full width */
    text-align: left; /* Aligns text to the left */
    margin-top: 25px;
    font-size: 1.4rem;
    font-weight: 400;
    width: 59%;
}

.get-strated {
    padding: 10px 30px;
    background-color:#13ba3f;
    color: whitesmoke;
    font-weight: bolder;
    font-family: "Poppins", sans-serif;
    margin: 20px 0px 0px;
    border: none;
    border-radius: 40px;
    cursor: pointer;    
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.get-strated:hover {
    
    box-shadow: 0px 0px 15px rgba(0, 0, 255, 0.6);
    background:transparent;
    border: 1px solid #13ba3f;
}

.d-model {
    flex-shrink: 0; /* Prevents shrinking */
    width: 40%; /* Adjust the size of the image container */
    text-align: right;
    margin-top: -300px;
    margin-left: 600px;
}

.d-model img {
    max-width: 70%;
    height: auto;
    transform: rotate(-4deg); /* Tilts the image */
    transition: transform 0.3s ease-in-out;
}

.d-model img:hover {
    transform: rotate(-5deg) scale(1.07); /* Slight hover animation */
}

/* Responsive for tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-section {
        padding: 100px 40px;
        align-items: center;
        text-align: center;
    }

    .sub-tittle, 
    .sub-tittle-2 {
        width: 80%;
        text-align: center;
    }

    .d-model {
        width: 60%;
        margin: 0 auto; /* Centers image */
    }

    .get-strated {
        margin: 20px auto 0;
    }
}

/* Responsive for mobile (below 768px) */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 20px;
        flex-direction: column; /* Stack elements */
        align-items: center;
        text-align: center;
    }

    /* Ensure titles come first */
    .sub-tittle {
        font-size: 2rem;
        width: 100%;
        line-height: 40px;
    }

    .sub-tittle-2 {
        font-size: 1rem;
        width: 90%;
        margin-bottom: 20px;
    }

    /* Move the image below the titles */
    .d-model {
        order: 2; /* Ensures image comes second */
        width: 80%;
        margin: 20px auto; /* Centers the image */
    }

    /* Button comes last */
    .get-strated {
        order: 3; /* Ensures button comes third */
        margin: 20px auto 0;
        padding: 10px 25px;
    }
}

/*third section*/



.section-heading {
    text-align: left;
    margin-bottom: 40px;
}
.section-heading h2 {
    font-weight: 635;
}

.section-heading span {
    color: var(--secondary-color);
}
.section-heading p {
    font-weight: 390;
    font-family: "Poppins", sans-serif;
    margin-top: 10px;
}
.card-custom {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 100%;
}
.card-img {
    width: 45px;
    
    height: 45px;
    padding: 10px;
}
.card-custom:hover {
    transform: translateY(-10px);
}
/* .icon {
    font-size: 24px;
    color: var();
    margin-bottom: 10px;
} */
.row > div {
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 768px) {
    #about{
        margin-top: -50px;
    }
    
}

.svc-services-container {
    padding: 180px 150px;
}

.svc-services-title {
    font-weight: bold;
    font-size: 28px;
}

.svc-services-description {
    width: 70%;
}

.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;
}
.svc-accordion-body a{
    text-decoration: none;
    color: var(--primary-color);
}

/* Accordion Styling */
.svc-accordion-item {
    border: none;
    border-bottom: 1px solid #cedecb;
    margin-bottom: 10px;
}

.svc-accordion-button {
    font-size: 18px;
    background-color: transparent;
    font-weight: 600;
    width: 100%;
    text-align: left;
    padding: 1rem;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.svc-accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: transparent;
}

.svc-accordion-button:focus {
    box-shadow: none;
    outline: none;
}

/* Accordion Icons */
.svc-accordion-button .icon {
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s;
}

/* 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;
    }
}

/*fifth section*/

.review-container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    height: 500px;
    font-family: "poppins", sans-serif;
}
.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;
    }
    
}


/* sixth section*/


/* Testimonial container */
.testimonial-container {
    width: 100%;
    background-color:var(--primary-color);/* Maroon background */
    color: rgb(255, 242, 217);
    padding: 40px 20px;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the content horizontally */
    justify-content: center; /* Center the content vertically */
    min-height: 400px;
}

/* Quote styling */
.quote {
    font-size: 80px;
    font-weight: bold;
    color: #b3f518; /* Adjusted yellow to match the image more closely */
    line-height: 1;
    margin-bottom: -40px; /* Increased negative margin to bring the quote closer to the text */
    align-self: flex-start; /* Align the quote with the left edge of the content */
    margin-left: 10%; /* Align with the text's left edge */
}

/* Content wrapper */
.testimonial-content {
    width: 80%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Ensure content is left-aligned */
}

/* Testimonial text */
.testimonial-text {
    font-family: "Outfit", sans-serif;
    text-align: left; /* Left-aligned as in the image */
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
    margin-left: -100px;
    margin-bottom: 15px; /* Reduced margin to match the spacing in the image */
}

/* Highlighted text */
.highlight {
    font-weight: 450; /* Same weight as the rest of the text */
    color: #ffc800; /* Adjusted yellow to match the image */
    font-family: "Outfit", sans-serif;
}

/* Author */
.author {
    font-size: 16px;
    font-weight: 400;
    color: #e6d9b7; /* Adjusted to a closer match for the light beige in the image */
    margin-left: -100px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .testimonial-container {
        padding: 30px 15px;
        min-height: 250px;
    }
    .quote {
        font-size: 60px;
        margin-bottom: -30px;
        margin-left: 5%; /* Adjust for smaller screens */
    }
    .testimonial-content {
        width: 90%;
    }
    .testimonial-text {
        font-size: 1.2rem;
        margin-left: 00px;
    }
    .author {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .testimonial-container {
        padding: 20px 10px;
        min-height: 200px;
    }
    .quote {
        font-size: 40px;
        margin-bottom: -20px;
        margin-left: 2.5%; /* Further adjust for mobile */
    }
    .testimonial-content {
        width: 95%;
    }
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.5;
        margin-left: 00px;
    }
    .author {
        font-size: 12px;
    }
}
/*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;
}
.footer-address {
    font-style: italic;
}
.footer-bottom {
    font-size: 14px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.right-social{
    display: flex;
    gap: 15px;
    justify-items: right;
}
.right-social .google{
    width: 100px;
    height: 100px;
}

.right-social .meta{
    width: 100px;
    height: 100px;
}




