@import url('https://fonts.googleapis.com/css2?family=Merienda+One&family=Nunito:wght@200;300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merienda+One&family=Roboto:wght@300;400;500;600;700&display=swap');

:root{
    --color:#be9c79;
    --box-shadow:0 .5rem 1.5rem rgba(0,0,0,.1);
}

*{
    font-family: 'Nunito', sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;
}

*::selection{
    background: var(--color);
    color: #fff;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

html::-webkit-scrollbar{
    height: .5rem;
    width: 1rem;
}

html::-webkit-scrollbar-track{
    background: transparent;
}

html::-webkit-scrollbar-thumb{
    background: var(--color);
}

section{
    padding: 3rem 9%;
}

.heading{
    text-align: center;
    margin-bottom: 3rem;
}

.heading h3{
    font-size: 4rem;
    color: var(--color);
    font-family: 'Merienda One', cursive;
}

.sub-heading{
    background: url(images/heading-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding-top: 16rem;
    padding-bottom: 8rem;
}

.sub-heading h1{
    color: var(--color);
    font-size: 4rem;
    font-family: 'Merienda One', cursive;
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: .8rem 3rem;
    font-size: 1.7rem;
    border-radius: .5rem;
    border: .2rem solid var(--color);
    color: var(--color);
    cursor: pointer;
}

.btn:hover{
    background: var(--color);
    color: #fff;
}


/* header */

.header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 9%;
    background: #fff;
    box-shadow: var(--box-shadow);
}

.header .logo{
    font-size: 2.5rem;
    font-weight: bolder;
    color: #222;
}

.header .logo i{
    color: var(--color);
}

.header .navbar a {
    text-align: center;
    color: var(--color);
    font-size: 2rem;
    font-family: 'Merienda One', cursive;
    margin: 0 2rem; /* Increase the value to adjust the spacing */
    text-decoration: none;
}

.header .navbar a:last-child {
    margin-right: 0;
}
.header .navbar a.active{
    color: var(--color);
}

.header .navbar a:hover{
    color: var(--color);
}
    .navbar a {
        margin-right: 20px; /* Adjust the value to increase or decrease the spacing */
    }
    
    /* Optional: Remove margin from the last item if you want */
    .navbar a:last-child {
        margin-right: 0;
    }

.header .icons div{
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    border: .1rem solid var(--color);
    color: var(--color);
    border-radius: .5rem;
    font-size: 2rem;
    margin-left: .3rem;
    cursor: pointer;
    text-align: center;
}

.header .icons div:hover{
    background: var(--color);
    color: #fff;
}
.menu {
    display: none; /* Hide menu by default */
    list-style: none; /* Remove default list styling */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}

.icons {
    position: relative; /* Position relative for absolute positioning */
}

/* Show menu when active */
.menu.active {
    display: block; /* Show the menu when it's active */
    position: absolute; /* Position it as needed */
    background: white; /* Set a background color */
    width: 100%; /* Full width */
    z-index: 1000; /* Ensure it’s above other elements */
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .header {
        flex-wrap: wrap;
    }
    
    .navbar {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        text-align: center;
        border-top: 1px solid #ddd;
    }

    /* When 'active' class is added, show the menu */
    .navbar.active {
        display: flex;
    }

    /* Reduce spacing for mobile menu links */
    .navbar a {
        padding: 8px 0; /* Reduce padding */
        margin: 0; /* Remove any default margin */
        display: block; /* Ensures links are stacked vertically */
        width: 100%; /* Take full width of navbar */
        border-bottom: 1px solid #ddd; /* Optional: Add separator line */
    }

    .icons {
        display: block;
        font-size: 24px;
        cursor: pointer;
    }

    .contact .row {
        flex-direction: column;
    }

    .contact form, .contact iframe {
        width: 100%;
    }

    .footer .box-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .header .logo img {
        height: 40px;
    }
    
    .sub-heading h1 {
        font-size: 24px;
    }

    .footer .box h2 {
        font-size: 18px;
    }
}
/* Responsive Adjustments */
@media (max-width: 992px) {
    .header {
        flex-wrap: wrap;
    }
    
    .navbar {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px;
        right: 0;
        width: 80%; /* Adjust width for smaller menu */
        text-align: left;
        border-top: 1px solid #ddd;
    }

    /* Show menu when 'active' class is added */
    .navbar.active {
        display: flex;
    }

    .navbar a {
        padding: 8px 0; /* Remove left and right padding */
        margin: 0;
        display: block;
        width: 100%; /* Make links take up full width */
        font-size: 16px; /* Smaller font size */
        border: none; /* Remove border/line between items */
    }

    .icons {
        display: block;
        font-size: 24px;
        cursor: pointer;
    }

    .contact .row {
        
        flex-direction: column;
    }

    .contact form, .contact iframe {
        width: 100%;
    }

    .footer .box-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .header .logo img {
        height: 40px;
    }
    
    .sub-heading h1 {
        font-size: 24px;
    }

    .footer .box h2 {
        font-size: 18px;
    }
}





/* home */

.home{
    background: url("images/home-bg.png") no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 95vh;
    display: flex;
    align-items: center;
}

.home .content{
    width: 55rem;
    text-align: center;
}

.home .content h3{
    font-size: 6rem;
    color: var(--color);
    font-family: 'Merienda One', cursive;
}

.home .content p{
    padding: 1rem 0;
    font-size: 1.6rem;
    color: #222;
    line-height: 2;
}

.home .content .btn{
    color: #fff;
}


/* media query*/

@media (max-width:991px){

    html{
        font-size: 55%;
    }

    .header{
        padding: 2rem;
    }

    section{
        padding: 3rem;
    }

}

@media (max-width:768px){

    #menu-btn{
        display: inline-block;
    }

    .header .navbar{
        position: absolute;
        top: 110%; right: -110%;
        width: 30rem;
        box-shadow: var(--box-shadow);
        background: #fff;
        border-radius: .5rem;
    }

    .header .navbar.active{
        right: 2rem;
        transition: .4s linear;
    }

    .header .navbar a{
        font-size: 2rem;
        margin: 2rem 2.5rem;
        display: block;
    }

    .home{
        background-position: left;
        justify-content: center;
    }

    .home .content h3{
        font-size: 4rem;
    }

}

@media (max-width:450px){
    html{
        font-size: 50%;
    }
}

/* end */




/* offer */
.offer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
    align-items: flex-start;
}
/* end */




/* about us */
.about{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
}

.about .image{
    flex: 1 1 40rem;
}

.about .image img{
    width: 100%;
}

.about .content{
    flex: 1 1 40rem;
}

.about .content h3{
    font-size: 4.5rem;
    color: var(--color);
    font-family: 'Merienda One', cursive;
    padding-bottom: 1rem;
}

.about .content p{
    padding: 1rem 0;
    line-height: 2;
    font-size: 1.5rem;
    color: #666;
}
/* about us end */





.base .box-container{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
}

.base .box-container .image{
    flex: 1 1 40rem;
}

.base .box-container .image img{
    width: 100%;
}

.base .box-container .container{
    flex: 1 1 40rem;
    display: flex;
    flex-direction: column;
}

.base .box-container .container .item{
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.base .box-container .container .item .content{
    margin-left: 2rem;
}

.base .box-container .container .item .content h3{
    font-size: 2.2rem;
    color: var(--color);
}

.base .box-container .container .item .content p{
    margin: .5rem 0;
    font-size: 1.5rem;
    line-height: 1.6;
}



/* contact */

.contact .row{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact .row form{
    padding: 2rem;
    border: .1rem solid rgba(0,0,0,.1);
    flex: 1 1 40rem;
    border-radius: .5rem;
}

.contact .row form h3{
    font-size: 2.5rem;
    padding-bottom: 1rem;
    color: var(--color);
}

.contact .row form .inputBox{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact .row form .input.h2nput{
    width: 49%;
}

.contact .row form .inputBox .box,
.contact .row form textarea{
    padding: 1rem 1.2rem;
    font-size: 1.6rem;
    border: .1rem solid rgba(0,0,0,.1);
    color: #222;
    text-transform: none;
    margin: .7rem 0;
    border-radius: .5rem;
}

.contact .row form textarea{
    width: 100%;
    height: 15rem;
    resize: none;
}

.contact .row form .btn{
    background: none;
}

.contact .row form .btn:hover{
    background: var(--color);
}

.contact .row .map{
    flex: 1 1 40rem;
}

.contact {
    opacity: 1; /* Make the contact section visible by default */
    transform: translateX(0); /* No initial sliding effect */
    transition: none; /* Remove smooth animation */
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .contact .row {
        flex-direction: column;
        gap: 1rem;
    }

    .contact .row form {
        flex: 1 1 100%; /* Make the form take full width on mobile */
        margin-bottom: 2rem; /* Add space between the form and map */
    }

    .contact .row .map {
        flex: 1 1 100%; /* Make the map take full width on mobile */
        height: 300px; /* Adjust the map size for mobile */
    }

    .contact .row form .inputBox input,
    .contact .row form .inputBox .box,
    .contact .row form textarea {
        width: 100%; /* Ensure input and text areas take full width on mobile */
    }

    .contact .row form h3 {
        font-size: 2rem; /* Adjust font size for mobile */
    }
}



/* footer */

.footer{
    padding: 3rem 7%;
    color: #fff8f2;
}

.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}

.footer .box-container .box h2{
    font-size: 2.2rem;
    color:#552C24 ;
    font-family: 'Merienda One', cursive;
    padding: 1rem 0;
}

.footer .box-container .box h3 i{
    color: var(--color);
}

.footer .box-container .box a{
    font-size: 1.8rem;
    font-family: 'Roboto', sans-serif;
    color: var(--color);
    padding: 1rem 0;
    display: block;
    text-decoration: none;
}

.footer .box-container .box a:hover{
    text-decoration: double;
}

.footer .box-container .box a i{
    padding-right: .5rem;
}

.footer .box-container .box form input[type="email"]{
    width: 100%;
    padding: 1rem 1.2rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    color: #222;
    margin: 1rem 0;
    border: .1rem solid var(--color);
    border-radius: .5rem;
    text-transform: none;
}

.footer .box-container .box form .btn{
    background: none;
}

.footer .box-container .box form .btn:hover{
    background: var(--color);
}

.footer .box-container .box .payment{
    width: 100%;
    margin-top: 2rem;
}

/* Social Media Icons */
.footer .social-icons {
    display: flex;
    flex-direction: row; /* Change to row for horizontal alignment */
    gap: 3rem; /* Optional: Add spacing between icons */
    align-items: center; /* Optional: Center the icons vertically */
}

.footer .social-icons a {
    font-size: 2.5rem;
    color: var(--color);
    display: flex;
    align-items: center;
}

.footer .social-icons .separator {
    border-left: 1px solid var(--color);
    height: 2rem;
    margin: 0.5rem 0;
}

.footer .credit{
    text-align: center;
    color: #483424 !important;;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 2rem;
    padding-top: 2.5rem;
    border-top: .2rem solid rgba(0,0,0,.1);
}

.footer .credit span{
    color: var(--color);
}
.name{
    color: #D10707 !important;
}
.name1{
    color: #124E72 !important;

}
.name2{
    color: #0F2A3D !important;
}


/* Default: Remove all line breaks for smaller screens */
.large-only {
    display: none;
}

/* For larger devices (e.g., tablets and desktops) show multiple breaks */
@media (min-width: 768px) {
    .large-only {
        display: block;
    }
}



/* end */



/* Custom Styles */
.carousel-caption {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for captions */
    padding: 15px;
    border-radius: 5px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    height: 50px;
    width: 50px;
    background-color: rgba(0, 0, 0, 0.3); /* Darker background for controls */
    border-radius: 50%;
  }

  /* Make images responsive */
  .carousel-item img {
    object-fit: cover;
    height: 700px; /* Adjust height to fit your needs */
    width: 100%; /* Ensure images cover the width */
  }

  @media (max-width: 768px) {
    .carousel-item img {
      height: 300px; /* Reduce height on smaller screens */
    }
  }










  /* Button styles */
  .btn-custom {
    background-color: #f8b400;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin-top: 10px;
    transition: background-color 0.3s;
  }

  .btn-custom:hover {
    background-color: #d89b00;
  }

  .section-about {
    padding: 2rem 7%;
    overflow: hidden;
}

.section-about-heading {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.section-about-heading span {
    color: #d3ad7f;
}


.about-content-row {
    display: flex;
    gap: 35px;
    align-items: flex-start;
    margin-top: 4rem;
    transition: 0.5s;
}

.about-image-container {
    flex: 1;
    height: 500px;
    opacity: 0;
    transform: translateX(-50%);
    transition: all 1s ease;
}

.about-image-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.about-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    opacity: 0;
    transform: translateX(50%);
    transition: all 1s ease;
}

.about-text-content h3 {
    font-size: 3.0rem;
    font-family: 'Nunito', sans-serif;;
    line-height: 3rem;
}

.about-text-content p {
    font-size: 2rem;
    color: var(--color);
    line-height: 1.8;
}

.about-btn {
    display: inline-block;
    padding: 0.5rem 2rem; /* Reduced padding */
    font-size: 1.2rem; /* Reduced font size */
    font-weight: 600;
    color: #fff;
    border: 1px solid #a4a4a4;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.about-btn:hover {
    background-color: #d3ad7f;
    color: #010103;
}

/* Media queries for responsiveness */
@media (max-width: 1024px) {
    .about-content-row {
        flex-direction: column;
    }

    .about-image-container,
    .about-text-content {
        transform: none;
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .section-about {
        padding: 2rem 4%;
    }

    .section-about-heading {
        font-size: 2.4rem;
    }

    .about-text-content h3 {
        font-size: 2rem;
    }

    .about-text-content p {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .section-about {
        padding: 1.5rem 3%;
    }

    .section-about-heading {
        font-size: 2rem;
    }

    .about-text-content h3 {
        font-size: 1.8rem;
    }

    .about-text-content p {
        font-size: 1.1rem;
    }
}
.logo img {
    height: 100px; /* Adjust height */
    width: auto; /* Keep aspect ratio */
    vertical-align: middle; /* Align with text */
}
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; /* Spacing between image and form */
}

.image-container img {
    width: 90vw; /* Default image width to fill 90% of the viewport */
    max-width:    800px; /* Limits max size for larger screens */
    height: auto;
    max-height: 700px;
}

@media (max-width: 768px) { /* For tablets and smaller screens */
    .image-container img {
        max-width: 100%; /* Full width on tablets */
        max-height: 400px; /* Adjust max height */
        min-width: unset; /* Remove min-width constraint */
    }
}

@media (max-width: 480px) { /* For small mobile devices */
    .image-container img {
        max-width: 100%; /* Full width on smaller screens */
        max-height: 300px; /* Reduce max height further */
        min-width: unset; /* Remove min-width constraint */
    }
}







.container1 {
    background-image: url('images/cfc-fran.png'); /* Replace with the actual path to your background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px; /* Adjust padding as needed */
    
}
/* Center the form in the middle of the page */
.franchise .container1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 20px;
 
    box-sizing: border-box;
   
    border-radius: .5rem;

}
form {
    max-width: 100%; /* Width for smaller screens */
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    border-radius: 8px;
}

/* Increase form width on larger screens */
@media (min-width: 1024px) {
    form {
        max-width: 70%; /* Adjust to desired width for larger devices */
    }
}

@media (min-width: 1440px) {
    form {
        max-width: 50%; /* Further increase for extra-large screens */
    }
}
.franchise form {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f9f9f9;
   
    box-sizing: border-box;
}

.franchise h3 {
    font-size: 4rem;
    color: var(--color);
    font-family: 'Merienda One', cursive;

}

.franchise p {
    margin-bottom: 10px;
    font-size: large;
}

.franchise .box {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid  #be9c79;
    border-radius: 5px;
    box-sizing: border-box;
}

.franchise .checkbox {
    font-size: 1.6rem;
    text-transform: none;
    margin: .7rem 0;
    border-radius: .5rem;
     background-color: #f9f9f9;

}

.franchise .checkbox label {
    display: flex;
    align-items: center;
}

.franchise .checkbox input {
    margin-right: 10px;
}
.franchise .btn {
    display: inline-block;
    width: 20%;
    padding: 10px;
    background: none;
    border: solid var(--color);
    color: var(--color);
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.franchise .btn:hover {
    background: var(--color);
    color: #fff;
}

/* Media Queries for Responsiveness */

/* For screens smaller than 991px */
@media (max-width:991px) {
    .franchise {
        padding: 3rem;
    }

    .franchise .row .form-container,
    .franchise .row .map-container {
        flex: 1 1 100%;
    }

    .franchise .row .form-container .inputBox input,
    .franchise .row .form-container textarea {
        width: 100%;
    }

    .franchise .btn {
        width: 100%; /* Full width on smaller screens */
        font-size: 16px;
        padding: 12px 0;
    }
}

/* For screens smaller than 768px */
@media (max-width:768px) {
    .franchise {
        padding: 2rem;
    }

    .franchise .row .form-container h3 {
        font-size: 2rem;
    }

    .franchise .row .form-container .inputBox input,
    .franchise .row .form-container textarea {
        font-size: 1.4rem;
    }

    .franchise .btn {
        width: 100%; /* Full width on small screens */
        font-size: 14px; /* Slightly smaller font */
        padding: 12px 0; /* More padding for better touch interaction */
    }
}

/* For screens smaller than 450px */
@media (max-width:450px) {
    .franchise {
        padding: 1.5rem;
    }

    .franchise .row .form-container h3 {
        font-size: 1.8rem;
    }

    .franchise .row .form-container .inputBox input,
    .franchise .row .form-container textarea {
        font-size: 1.2rem;
    }

    .franchise .btn {
        width: 100%; /* Full width on very small screens */
        font-size: 12px; /* Even smaller font size */
        padding: 10px 0; /* Adjust padding for better fit */
    }
}



/* Add this to your style.css */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(20px); /* Adjusts the entry position */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-slide-left {
    opacity: 0;
    transform: translateX(-20px); /* Adjusts the entry position */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-slide-right {
    opacity: 0;
    transform: translateX(20px); /* Adjusts the entry position */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.unique-card-container {
    display: flex;
    flex-wrap: wrap; /* Allow cards to wrap */
    gap: 30px; /* Space between cards */
    justify-content: center; /* Center the cards */
}

.unique-card {
    width: 100%; /* Full width on mobile */
    max-width: 350px; /* Maximum width for larger screens */
    height: 300px; /* Fixed height */
    perspective: 1000px; /* 3D effect */
    box-sizing: border-box; /* Include padding and border in width/height */
}

.unique-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.unique-card:hover .unique-card-inner {
    transform: rotateY(180deg);
}

.unique-card-front, .unique-card-back {
    font-size: 1.5rem;
    color: var(--color);
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border: 1px solid #ccc; /* Card border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
    display: flex;
    justify-content: center;
    align-items: center;
}

.unique-card-front {
    overflow: hidden; /* Prevent overflow */
}

.card-image {
    width: 100%; /* Fill the width */
    height: 100%; /* Fill the height */
    object-fit: cover; /* Cover the entire area */
    display: block; /* Remove bottom space */
}

.unique-card-back {
    transform: rotateY(180deg);
    background-color: #f7f7f7; /* Back side color */
    padding: 20px; /* Optional, adjust as needed */
    box-sizing: border-box;
    display: flex;
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center content vertically */
    align-items: center;
}


.unique-card-back h2 {
    margin-bottom: 10px; /* Space between heading and paragraph */
    font-family: 'Merienda One', cursive;
    color: var(--color); /* Ensure the color is applied */
}

.unique-card-back p {
    text-align: center; /* Center text if needed */
}
/* Responsive Styles */
@media (max-width: 768px) {
    .unique-card {
        height: 250px; /* Reduce height for smaller screens */
    }
}

@media (max-width: 480px) {
    .unique-card {
        height: 200px; /* Further reduce height for mobile devices */
    }

    .unique-card-container {
        flex-direction: column; /* Stack cards one after another */
        gap: 20px; /* Reduce gap for smaller screens */
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .header {
        flex-wrap: wrap;
    }
    
    .navbar {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        text-align: center;
        border-top: 1px solid #ddd;
    }

    /* When 'active' class is added, show the menu */
    .navbar.active {
        display: flex;
    }

    .navbar a {
        padding: 10px;
    }

    .icons {
        display: block;
        font-size: 24px;
        cursor: pointer;
    }

    .contact .row {
        flex-direction: column;
    }

    .contact form, .contact iframe {
        width: 100%;
    }

    .footer .box-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .header .logo img {
        height: 40px;
    }
    
    .sub-heading h1 {
        font-size: 24px;
    }

    .footer .box h2 {
        font-size: 18px;
    }
}
@media (max-width: 992px) {
.footer .box-container .box h2{
    font-size: 2rem;
   
}
}
