  body{
    width: 100%;
    margin: 0%;
}
.faizv{
width: 100%;
    height: 650px;
    margin: 0%;
    position: relative; /* Position content above the video */

    z-index: 1; /* Ensure content is above the video */

    color: white; /* Text color */

    text-align: center; /* Center text */

    padding: 20px;

}

.faizv video {
    height: 100%;
    width: 100%;
    padding: 0%;
    margin: 0%;
}
.header {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #f7f3e3;
    border-bottom: 1px solid black;
    box-shadow: 1px 1px 1px 1px black;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 50px;
}
.logo-text {
    margin-left: 10px;
    font-size: 29px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #641a04;
}
.logo-text span {
    color: #000000;
}
.logo-subtext {
    font-size: 14px;
    color: #000000;
}
.contact-info {
    display: flex;
    align-items: center;
    margin-left: auto;
}
.contact-item {
    display: flex;
    align-items: center;
    margin-left: 30px;
}
.contact-item i {
    font-size: 24px;
    color: #641a04;
    margin-right: 10px;
}
.contact-item a {
    text-decoration: none;
    color: #000000;
}
.contact-item a:hover {
    text-decoration: underline;
}
.contact-item span {
    color: #333;
}
.review-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 99%;

    padding: 20px;
}
.review-header {
    text-align: center;
    margin-bottom: 20px;
}
.review-header h1 {
    font-size: 48px;
    color: #333;
    margin: 0;
}
.review-header .stars {
    color: #f5a623;
    margin: 10px 0;
}
.review-header .review-count {
    color: #000000;
}
.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.rating-bar span {
    font-size: 14px;
    color: #333;
    width: 20px;
}
.rating-bar .bar {
    flex: 1;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin: 0 10px;
    position: relative;
}
.rating-bar .bar .fill {
    height: 100%;
    background-color: #f5a623;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
}
.rating-bar .count {
    font-size: 14px;
    color: #101010;
}
.reviews {
    margin-top: 20px;
    display: flex;
    overflow-x: auto;
    padding-bottom: 20px;
}
.review-item {
    display: flex;
    align-items: flex-start;
    margin-right: 20px;
    min-width: 300px;
}
.review-item .review-content {
    flex: 1;
}
.review-item .review-content h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}
.review-item .review-content .stars {
    color: #f5a623;
    margin: 5px 0;
}
.review-item .review-content p {
    margin: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #888;
    font-size: 14px;
} 
/* Initial state: review items are hidden */
.review-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When the review item becomes visible, animate it */
.review-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky{
    position: sticky;
}
.brochure1{
    
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background-color: #641a07;
    color: #f7f3e3;
    border-radius: 25px ; 
    text-align: center;
    padding: 10px;
   
}
a {
    text-decoration: none;
    color: #f7f3e3;
}
.expert, .quality{
    opacity: 0;  /* Initially invisible */
    transform: translateY(50px);  /* Start with the elements shifted down */
    transition: opacity 1s ease, transform 1s ease;  /* Smooth transition for opacity and position */
}

/* Add visible class to make the elements fade in and slide up */
.expert.visible, .quality.visible {
    opacity: 1;
    transform: translateY(0);  /* Reset position */
}

 .lang-main-box{ 
    width: auto;
    border-radius: 15px;
    background-color: #f7f3e3;
    padding: 20px;
    gap: 30px;
    margin: 20px;
    display: flex;
    text-align: center;
   align-items: center;
   opacity: 0;  /* Initially invisible */
   transform: translateY(20px);  /* Slightly down */
   transition: opacity 0.6s ease-out, transform 0.6s ease-out; 
}
.lang-main-box.visible {
    opacity: 1;
    transform: translateY(0);  /* Move to original position */
}

.lang-right{
    
    padding: 20px;
}
.lang-text h1{
    padding-bottom: 5px;
    color: #641a07;
    font-size: 3.6vw;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: bold;
}
.lang-text p{
    display: block;
    text-align: center;
    width: 100%;
    padding: 2px;
    justify-content: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 1.4vw;
}
.lang-button{
    margin-top: 20px;
}

@media (max-width:768px){
    .lang-main-box{
        display: block;
        padding:10px 20px
    }
    .lang-text h1{
        font-size: 5.8vw;
        line-height: 7vw;
    }
    .lang-video video{
        height: auto;
        width: auto;
    }
    .lang-text p{
        width: 100%;
        font-size: 3.9vw;
    }
}
.about{
    background-color: #fafafa;
}
.active{
    background-color: #6F1A07;
}
.first {
    background-color: #f7f3e3;
}
.expert {
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 10vh;
    color: #761e0b;
    background-color: #f7f3e3;
    padding: 0;
    margin: 0;
}
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1c1818;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: auto;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 16px;
    text-decoration: none;
    color: #ffecec;
    transition: background-color 0.3s ease;
}
.button:hover {
    background-color: #f7f3e3;
    color: #6F1A07;
    box-shadow: 2px 2px 2px #6F1A07;
    animation: backwards;
}
.button learn-more{
    color: #f8f4f3;
}
.space {
    height: 8vh;
    background-color: #f7f3e3;
}
.quality {
    font-size: 6vh;
    text-align: center;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background-color: #f7f3e3;
}
.main {
    display: flex;
    position: relative;

    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    color: #6F1A07;
    padding-bottom: 0%;
}
.main h1{
    display: flex;
    position: relative;
    left: 100px;
}
.space1 {
    display: flex;
    position: relative; 
    top: 1VH;
    left: 77vh;
    font-size: 30px;
}
.main img{
    padding: 0%;
    margin: 0%;
    display: flex;
   position: relative;
   left: 5px;
   height: 100px;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f7f3e3;
    padding: 10px;
    font-family: 'Times New Roman', Times, serif;
    position: sticky; /* Make the navbar sticky */
    top: 0; /* Stick to the top */
    z-index: 1000; /* Ensure it stays above other content */
    border-bottom: 1px solid black;
    box-shadow: 1px 1px 1px black;
}
.navbar .logo {
    color: #6F1A07;
    font-size: 24px;
    display: none;
    font-weight: bold;
}
.navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
.navbar ul li {
    margin: 0 10px;
}
.navbar ul li a {
    color: #6F1A07;
    text-decoration: none;
    font-size: 18px;
  
    padding: 9px;
}
.navbar ul li a:hover {
    color: #ddd;
    background-color: #6F1A07;
    transition: ease-in-out 0.3s;
    border-radius:5px  ;
}

.navbar .menu-icon {
    display: none;
    font-size: 24px;
    color: #6F1A07;
    cursor: pointer;
}
.full-page-nav {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f7f3e3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}
.full-page-nav.active {
    transform: translateX(0);
}
.full-page-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.full-page-nav ul li {
    display: block;
    top: auto;
    margin: 20px 0;
    padding: 0%;
}
.full-page-nav ul li a {    
    color: #6F1A07;
    text-decoration: none;
    font-size: 24px;
}
.full-page-nav ul li a:hover {
    color: #2e0c05;
}
.full-page-nav .close-btn {
    position: absolute;
    top: 20px;
    right: 0%;
    font-size: 24px;
    color: #6F1A07;
    cursor: pointer;
}
.slideshow-container {
    position: relative;
    max-width: 1500px;
    float: right;
    width: 100%;
    margin: auto;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.slides {
   width: 50%;
   height: 70%;
   float: right;
}
.slide {
    width: 50%;
    float: left;
    font-size: 3vw;

 }
 .slide p {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-align: justify;
    margin-top: 1vh;
    margin-right: 6vh;
    margin-left: 6vh;
    height: auto;
    width: auto;
    float: left;
    font-size: 3.4vh;
 }
 .slide h1 {
    font-weight: bold;
    font-family:sans-serif;
    text-align: justify;
    margin-right: 6vh;
    margin-left: 6vh;
    height: auto;
    width: auto;
    float: left;
    font-size: 5vh;
 }
.slides img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
.dots{
    display: none;
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.dots {
    text-align: center;
    padding: 10px;
    background: #ddd;
    border-radius: 0 0 10px 10px;
}
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.active, .dot:hover {
    background-color: #ffffff;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.second{
    font-size: 0px;
    text-decoration: underline;
    text-align: center;
}

.service1, .service2 {
    opacity: 0;
    transform: translateY(20px); /* You can change this to any other transform effect */
    transition: opacity 1.5s ease-out, transform 1.5s ease-out; /* Adjust timing and easing as needed */
}

/* When the service box is visible, apply the animation */
.service1.visible, .service2.visible {
    opacity: 1;
    transform: translateY(0); /* This will slide the element up */
}
.service1{
  
    position: flex;
    display: inline-block;
    flex-direction: column;
    margin-left: 80px;
    padding-top: 10px;
    margin-right: 80px;
    width: 18vw;
    color: #6F1A07;
    border-radius: 5px;
    text-align: center;
}

.service2{
    position: flex;
    display: inline-block;
    flex-direction: column;
    height: 20vw;
    margin-top: 50px;
    margin-left: 80px;
    padding-top: 30px;
    margin-right: 80px;
    width: 18vw;
    color: #6F1A07;
    border-radius: 5px;
    text-align: center;
}

.service1:hover{
    background-color: #f7f3e3;
    background-size: 100% 100%;
    color: #6F1A07;
    transition: ease-in-out 0.3s;
}
.service2:hover{
    background-color: #f7f3e3;
    color: #6F1A07;
    transition: ease-in-out 0.3s;
}
.service-box{
    text-align: center;
    font-weight: bold;
    font-size: 2.3vh;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

}
.details{
    text-align: center;
    color: #1c1818;
    margin-top: 5px;
    font-weight: lighter;
}
.heading {
    font-size: 2.5rem;
    color: #17163E;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; ;;
    
    opacity: 0;
    transform: translateY(30px);  /* Move the element slightly down */
    transition: opacity 1s ease, transform 1s ease;  /* Add smooth transition for opacity and transform */
}
.heading.visible {
    opacity: 1;  /* Make the element fully visible */
    transform: translateY(0);  /* Move the element to its normal position */
}

.counter-container {
    display: flex;
    justify-content: space-around;
    width: auto;
    background: #17163E;
    color: aliceblue;
    padding: 10vh;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0; /* Initially hide */
    transform: translateY(50px); /* Slide up from below */
    transition: opacity 1s ease, transform 1s ease;
}

/* Visible class to trigger animation */
.counter-container.visible {
    opacity: 1;
    transform: translateY(0);
    
}
.counter {
    text-align: center;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; ;
    
}
.counter h2 {
    font-size: 2.5rem;
    margin: 10px 0;
}
.counter p {
    font-size: 1.2rem;
    color: #ebebeb;
}
.form{
    display: flex;
    height: auto;
    margin-bottom: 10px;
    width: auto;
}
.contact{
    text-align: center;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif ;
    font-weight: bold;
    font-size: 5vh;
    padding: 10px;
}
.contact-us {
    flex: 0.7; /* Take up half the screen */
    padding-top: 0px;
    background-color: #e2e2e2;
    display: flex;
    flex-direction: column;
}

.address{
    padding-left: 5vw;
    padding-top: 0vw;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif  ;
    font-size: 1.3vw;
}
.icons {
    display: flex; /* Use flexbox to arrange items in a row */
    align-items: center; /* Center items vertically */
    gap: 10px; /* Optional: Add space between icons */
    padding-top: 15px;
    padding-left: 65px;
}

.icons img {
    display: inline-block; /* Ensure images are treated as inline elements */
}
.form-container {
    flex: 1; /* Take up half the screen */
    background-color: #f4f4f4;
    display: block;
    background-image: url('whats-new-bg.png');
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center the form content */
}
label {
    margin-bottom: 5px;
    display: inline-block;
    font-weight: bold;
    font-size: 3.2vh;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
 
}

input, textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 60%;
    height: auto;
    box-sizing: border-box; /* Ensures padding is included in width */
}   
.footer {
    background-color: #333;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    opacity: 0;  /* Initially invisible */
    transform: translateY(50px); /* Initially moved down */
    transition: all 0.5s ease-out; /* Smooth transition */
}
.footer.active {
    opacity: 1;
    transform: translateY(0); /* Slide to normal position */
}
.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer .container .column {
    flex: 1;
    min-width: 200px;
    margin: 10px 0;
}
.footer .container .column h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}
.footer .container .column ul {
    list-style: none;
    padding: 0;
}
.footer .container .column ul li {
    margin-bottom: 10px;
}
.footer .container .column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
.footer .container .column ul li a:hover {
    text-decoration: underline;
}
.footer .social-icons {
    margin-top: 20px;
}
.footer .social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
    text-decoration: none;
}
.footer .social-icons a:hover {
    color: #ddd;
}
  
.table-container {
    width: 80%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
th {
    background-color: #f2f2f2;
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}
.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    width: 300px; /* Adjust width for smaller screens */
    min-height: 300px; /* Adjust height for smaller screens */
  
    opacity: 0;  /* Initially invisible */
    transform: translateY(50px);  /* Start from below */
    transition: opacity 1s ease, transform 1s ease; 
}
.card.visible {
    opacity: 1;
    transform: translateY(0);  /* Reset position */
}
.card:hover{
    color: #6F1A07;
    background-color: #f7f3e3;
    transition: ease-in-out 0.3s;
}
.card h2 {
    color: #6F1A07;
    margin-top: 0;
    font-size: 4vh;
    font-weight: bold;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-align: center;
}
.card p {
    color: #000000;
    margin-bottom: 15px;
  
    text-align: left;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.card ul {
    list-style: none;
    padding: 0;
}

.card li {
    margin-bottom: 10px;
}

.card .btn {
    background-color: #6F1A07;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    cursor: pointer;
    display: inline-block;
    margin-top: 15px;
    text-align: center;
}
.btn:hover{
    background-color: #341109;
    transition: ease-in-out 0.3s;
}

.header-container {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    height: 50vh;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Hide overflow to create a clean scroll effect */
}
.header-title {
    background-color: #761e0b;
    color: white;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    padding: 10px;
    font-size: 18px;
    flex-shrink: 0;
}
.news-container {

   text-align: center;
    border: 1px solid #ddd;
    margin-top: 10px;
    flex-grow: 1;
    overflow: hidden; /* Hide overflow to create a clean scroll effect */
    position: relative;
    left: 0%;
    right: -100%;
}
.scrolling-news {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    animation: scroll 90s linear infinite; /* Animation for scrolling effect */
}
@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%); /* Move up by 100% of the content height */
    }
}
.news-item {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-bottom: 20px;
}
.news-item p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    width: 100%;
}
.media-section {
    position: relative;
    width: 50%;
    margin-right: 20px;
}
.media-section video {
    width: 100%;
    border-radius: 10px;
}
.info-section {
    width: 50%;
}
.info-section h1 {
    font-size: 24px;
    margin-top: auto;
    color: #6F1A07;
    font-size: 5vh;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.info-section p {
    font-size: 2vh;
    color: #000000;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.action-buttons {
    margin: 20px 0;
   
}
.action-buttons a {
    text-decoration: none;
    color: #f7f3e3;
    background-color: #6F1A07;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    padding: 10px 20px;
    border-radius: 5px;
}
.action-buttons a:hover{
    background-color: #f7f3e3;
    color: #6F1A07;
    transition: ease-out 0.3s;
}
.course-box {
    display: flex;
    align-items: center;
    background-color: #f8f8f8;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.course-box img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.course-box .course-details {
    text-align: left;
}
.course-box .course-details h2 {
    font-size: 18px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin: 0;
    color: #333;
}
.course-box .course-details p {
    font-size: 12px;
    
    color: #777;
}
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    
}
.faq-content {
    flex: 1;
    min-width: 300px;
    margin-right: 20px;
    
}
.faq-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    
}

.faq-item i {
    color: #333;
}
.faq-item p {
    margin: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 16px;
    font-weight: bold;
    
}
.faq-description {
    display: none;
    text-align: justify;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin-top: 20px;
    font-size: 14px;
    color: #000000;
    
}
.faq-header {
    text-align: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin-bottom: 40px;
    
}
.faq-header h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    
}
.faq-header h1 span {
    color: #6F1A07;
    margin: 0px;
    
}
.faq-header p {
    font-size: 16px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #666;
    margin: 10px 0 0;
    
}
  /* Container for main sections */
  .contact-us-main-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding-top: 20px;
    gap: 30px; /* Space between sections */
    transition: ease-in-out 0.5s;
}
.contact-us-form {
    opacity: 0;
    transform: translateX(0); /* Contact form will come from the right */
    transition: transform 1.6s ease, opacity 1.6s ease;
}
.contact-us-details{
    opacity: 0;
    transform: translateX(0); /* Contact form will come from the right */
    transition: transform 1.6s ease, opacity 1.6s ease;
}

/* When visible, bring them into view */
.contact-us-form.visible {
    opacity: 1;
    transform: translateX(0); /* Slide the form in */
}

.contact-us-details.visible {
    opacity: 1;
    transform: translateX(0); /* Slide the details in */
}


.contact-us-form, .contact-us-details {
    background-color: #f3f1eb;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    flex: 1 1 45%; /* 45% width for laptops */
    max-width: 600px;
    min-width: 300px;
    height: 400px; /* Same height for both form and contact us box */
}

.contact-us-form h2, .contact-us-details h2 {
    margin-top: 0;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif ;
    font-weight: bold;
    font-size: 3vh;
    text-decoration: underline;

}

.contact-us-form input,
.contact-us-form textarea,
.contact-us-details input,
.contact-us-details textarea {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgb(186, 171, 171);
    background-color: #f3f3f3;
    margin-bottom: 10px;
}

.contact-us-form button,
.contact-us-details button {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    color: #f7f3e3;
    background-color: #6F1A07;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%; /* Full width button */
}

.contact-us-form button:hover,
.contact-us-details button:hover {
    background-color: #5a1506;
}


/* Mobile Responsiveness */

/* Modal styles */
.contact-us-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    padding-top: 60px;
    animation: fadeIn 0.5s;
}

.contact-us-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.contact-us-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    float: right;
}

.contact-us-close:hover, .contact-us-close:focus {
    color: black;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0 }
    to { opacity: 1; }
}

/* Contact Us Cards */
.contact-us-cards-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.contact-us-card {
    background-color: #f7f3e3;
    border-radius: 15px;
    padding: 20px;
    width: 400px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.contact-us-cards-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-us-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.contact-us-card p{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.contact-us-card i {
    font-size: 2em;
    color: #6F1A07;
}

.contact-us-card h3 {
    margin: 10px 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 1.2em;
    color: #5a1506;
}

.contact-us-address {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: bold;
    font-size: 2rem;
    padding-top: 20px;
}

.contact-us-address-details {
    margin: auto;
    padding: auto;
    line-height: auto
    ;
    text-align: '';
    font-size: 1.2rem;
    margin-top: 30px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    
}

.contact-us-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 15px;
}

/* Google Map */
.contact-us-map-container {
    opacity: 0; /* Initially invisible */
    transform: translateY(20px); /* Slightly down from its original position */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Smooth fade-in and slide-up */
    width: 100%;
    height: 400px;
    margin-top: 20px;
}
.contact-us-map-container.visible {
    opacity: 1;
    transform: translateY(0);
}
@media screen and (max-width: 600px) {
   .brochure1{
    display: none;
   }
   .brochure{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background-color: #641a07;
    color: #f7f3e3;
    border-radius: 25px ; 
    text-align: center;
    padding: 10px;
   
   }
    .main {
        background-color: #fafafa;
        font-size: 7vh;
        display: none;
    }
    .logo{
        background-color: #f7f3e3;
    }
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #f7f3e3;
        padding: 20px;
        font-family: 'Times New Roman', Times, serif;
        position: sticky; /* Make the navbar sticky */
        top: 0; /* Stick to the top */
        z-index: 1000; /* Ensure it stays above other content */
        border-bottom: 1px solid black;
        box-shadow: 1px 1px 1px black;
    }
    .navbar ul {
        display: none;
        background-color: #f7f3e3;
    }
    .navbar .menu-icon {
        display: block;
        position: sticky;
    }
    .navbar .logo {
        display: flex;
    }
    .expert {
        text-align: center;
        font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif ;
        font-size: 3.5vh;
        font-weight: bold;
        color: #6F1A07;
    }
    .quality{
        text-align: center;
        font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif ;
        font-size: 3vh;
        color: #000000;
        font-weight: bold;
    }
    .faizv{
        width: 100%;
        height:auto;
        margin: 0%;
        padding: 0%;
    
    }
    
    .faizv video {
        height: 100%;
        width: 100%;
        padding: 0%;
        margin: 0%;
    }
    .slides {
        width: 100%;
        height: 40vh;
        
    }
    .slide{
        display: none;
    }
    .second{
        padding-bottom: 0%;
        font-size: 4vw;
    }
    .header{
        display: none;
    }
    .info-section h1 {
        font-size: 24px;
        padding-top: 0px;
        margin-top: 0px;
        color: #6F1A07;
        font-size: 5vh;
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    }
    .service1{
        font-size: 1vh;
        display: inline-block;
        text-align: center;
        height: 29vw;
        align-content: center;
        width: 58%;     
    }
    .service1:hover{
        background-color: #ff1010;         
    }
    .boxi{
        background-color: #000000;
    }
    .service-box{
        text-align: justify;
        font-size: 2vw;
    
    }
    .second{
        font-size: 5vw;
        color: #761e0b;
        font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    }
    .service2{
        display: none;
    }
    .counter-container {
        flex-direction: column;
        align-items: center;
    }
    .counter {
        margin-bottom: 20px;
    }
    .close-btn{
        width: 4vh;
    }
    .contact{
        text-align: center;
        font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif ;
        font-weight: bold;
        font-size: 5vh;
        
    }
    .contact-us {
        flex: 0.7; /* Take up half the screen */
        padding-top: 1px;
        background-color: #e2e2e2;

    }
    .address{
        padding-left: 10%;
        font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif  ;
        font-size: 1.3vw;
    }
    .icons {
        display: flex; /* Use flexbox to arrange items in a row */
        align-items: center; /* Center items vertically */
        gap: 10px; /* Optional: Add space between icons */
        padding-top: 15px;
        padding-bottom: 30px;
        padding-left: 65px;
    }
    
    .icons img {
        display: inline-block; /* Ensure images are treated as inline elements */
    }
    .address{
        font-size: 4vw;
        width: 90%;
    }
    .form {
        flex-direction: column; /* Stack elements vertically on mobile */
    }
    .form-container {
        height: 10%; /* Full height for the form on mobile */
    }
    label {
        display: block;
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
     
    }
    .headline {
        width: 90%;
        height: 20%;
        flex-direction: column;
    }
    .header-container {
        width: 90%;
        height: 70vw;
        flex-direction: column;
    }
    .news-container {
        padding: 0px;
        border: 1px solid #ddd;
        margin-top: 10px;
        flex-grow: 1;
        overflow: hidden; /* Hide overflow to create a clean scroll effect */
        position: relative; /* Position relative for absolute positioning of the scrolling content */
    }
    .scrolling-news {
        position: absolute;
        animation: scroll 100s linear infinite; /* Animation for scrolling effect */
    }
    .faq-container {
        flex-direction: column;
        align-items: center;
    }
    .faq-content {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .media-section, .info-section {
        width: 100%;
        margin: 0;
    }
    .media-section {
        margin-bottom: 20px;
    }  
    .contact-us-form {
        opacity: 0;
        transform: translateX(0%); /* Contact form will come from the right */
        transition: transform 0.6s ease, opacity 0.6s ease;
    }
    .contact-us-details{
        opacity: 0;
        transform: translateX(0%); /* Contact form will come from the right */
        transition: transform 1.6s ease, opacity 1.6s ease;
    }
    
    }

@media screen and (max-width: 1048px){
    .service1:hover{
        background-color: #ffffff;
        
    }
    .service2:hover{
        background-color: #ffffff;
        
    }
    .contact-us-main-container {
        flex-direction: column;
        gap: 20px; /* Less gap between sections */
    }
    .contact-us-form,
    .contact-us-details {
        flex: 1 1 100%; /* 100% width on smaller screens */
        height: auto; /* Adjust height to auto for mobile */
    }
}