

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


.starting {

    color: white;
    padding: 10px;
    
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* width: 100%; */
    
    /* background-color: #943f3f; */
    background-color: #1a77d4;   

}

.logo {
    font-size: 2.1em;
    font-weight: bold;
}

.navbar .logo span {
    font-weight: lighter;
}

.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar nav a {
    text-decoration: none;
    color: white;
    font-size: 1em;
}

.cta-buttons button {
    margin-left: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.menu-icon {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
}
.close-icon {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem;
    z-index: 999;
    overflow-y: auto;
    margin-top: 60px;
}
.mobile-nav a {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
}
.mobile-nav .cta-buttons button {
    width: 100%;
}
@media (max-width: 768px) {
    .navbar nav, .cta-buttons {
        display: none;
    }
    .menu-icon {
        display: block;
    }
    .mobile-nav.active {
        display: flex;
    }
    .close-icon.active {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    .logo {
        font-size: 1.5em;  /* Decreased font size */
        text-align: left;
        margin-left: 0; /* Align to left */
    }
    .navbar {
        justify-content: flex-start;  /* Ensure items are aligned to left */
        padding-left: 1rem;
    }

}

/* 
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
   
    padding: 50px 30px;  
    margin: 15px 0;      
    flex-wrap: wrap;
    
}

.hero-content {
    max-width: 50%;
   
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.start-btn {
    padding: 15px 30px;
    font-size: 1em;
    background-color: #ff7b00;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    text-decoration: none;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
  
}


@media (max-width: 768px) {
    .navbar, .hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 2em;  
    }

    .hero-content p {
        font-size: 1em;
    }

    .hero-image img {
        max-width: 90%; 
    }

  

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .cta-buttons {
        margin-top: 20px;
    }
    .homepage::before {
        transform: scaleX(1.5);  
        border-radius: 0 0 80% 80% / 0 0 100% 100%;
    }
}


.homepage{
    height: auto;
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    color: #fff;
    padding-bottom: 60px;
}
.homepage::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  
    background-color: #1a77d4;   

    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    -webkit-transform: scaleX(2.1);
    transform: scaleX(2.1);
    z-index: -1;
}

*/




/* Hero Section */

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 30px;  /* Balanced padding */
    margin: 15px 0;  
    flex-wrap: wrap;
}

/* Hero Content */
.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.start-btn {
    padding: 15px 30px;
    font-size: 1em;
    background-color: #ff7b00;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    text-decoration: none;
}

/* Hero Image */
.hero-image img {
    width: 45vw; /* Responsive width */
    max-width: 100%;
    border-radius: 10px;
    transition: width 0.3s ease-in-out;
}

/* Responsive Design */
/* @media (max-width: 1285px) {
    .hero {
        padding: 40px 20px;
    }
    .hero-content {
        max-width: 55%;
    }
    .hero-content h1 {
        font-size: 2.5em;
    }
    .hero-content p {
        font-size: 1.1em;
    }
    .hero-image img {
        width: 50vw;
    }
} */

/* Reduce Image Size Between 900px - 1285px */
@media (max-width: 1285px) {
    .hero {
        padding: 40px 20px;
    }
    .hero-content {
        max-width: 55%;
    }
    .hero-content h1 {
        font-size: 2.5em;
    }
    .hero-content p {
        font-size: 1.1em;
    }
    .hero-image img {
        width: 42vw; 
    }
}

/* Further Reduce Image Below 1024px */
@media (max-width: 1024px) {
    .hero {
        padding: 40px 10px;
    }
    .hero-content {
        max-width: 50%;
    }
    .hero-content h1 {
        font-size: 2em;
    }
    .hero-content p {
        font-size: 1.1em;
    }
    .hero-image img {
        width: 48vw; 
    }
}

/* Below 900px, Image Gets Smaller but Layout Stays Parallel */
@media (max-width: 900px) {
    .hero {
        justify-content: space-between;
    }
    .hero-content {
        max-width: 50%;
    }
    .hero-image img {
        width: 45vw;
    }
}




/* Below 768px - Switch to Column Layout */
@media (max-width: 768px) {
    .navbar, .hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 2em;  
    }

    .hero-content p {
        font-size: 1em;
    }

    .hero-image img {
        max-width: 90%; 
    }

  

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .cta-buttons {
        margin-top: 20px;
    }
    .homepage::before {
        transform: scaleX(1.5);  
        border-radius: 0 0 80% 80% / 0 0 100% 100%;
    }
}

/* Homepage Background */
.homepage {
    height: auto;
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    color: #fff;
    padding-bottom: 60px;
}
.homepage::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a77d4;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    transform: scaleX(2.1);
    z-index: -1;
}











































/* about us swction  */



.h1-first
{
  text-align: center;
  text-shadow: #333;
  line-height: 30px;
  font-size: 60px;
  margin-top: 20px;
  margin-bottom: 50px; 
  
}

.about-hero 
{
    font-family: Arial, sans-serif;
    margin-top: 0px;
    padding: 80px 40px;
    background-color: #fff;
    color: #333;
}
.container 
{
   
    max-width: 1500px;
    margin: 80px auto;
    padding: 30px; 
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    gap: 20px;
}
.image-container {
    flex: 1;
    padding-right: 20px;
    animation: float 3s ease-in-out infinite;
}
.image-container img {
    max-width: 100%;
    border-radius: 8px;
}
.text-container {
    flex: 2;
    padding-left: 20px;
}
.text-h1  {
    color:  #b32929;
}
p {
    line-height: 1.6;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {

    .h1-first {
        font-size: 35px;   /* Reduce font size */
        margin-bottom: 30px;
    }

    .about-hero {
        padding: 40px 20px;  /* Reduced padding */
    }

    .container {
        flex-direction: column;   /* Stack image and text */
        padding: 20px;
        margin: 40px auto;
        gap: 15px;
    }

    .image-container, .text-container {
        padding: 0;
        flex: unset;  /* Remove flex, allow natural width */
        text-align: center;  /* Center content */
    }

    .image-container img {
        width: 90%;   /* Slight margin */
    }

    .text-h1 {
        font-size: 24px;
    }

    p {
        font-size: 14px;
    }
}


@media (max-width: 1200px) {
    .about-hero .h1-service {
        font-size: 40px;  
        margin-bottom: 30px;
    }

}


























.h1-service {
    text-align: center;
    text-shadow: #333;
    line-height: 30px;
    font-size: 60px;
    margin-bottom: 20px;
}
.potential {
    font-family: Arial, sans-serif;
    /* background-color: #943f3f; */
    /* background-color: #1dd7c5; */
    background-color: #1a77d4;   
    color: #fff;
    padding: 60px 20px;
}
.gallery-container {
    max-width: 1500px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.gallery-container h1 {
    /* color: #b32929; */
    color: #111;
}
.slideshow-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 20px auto;
}
.slide {
    display: flex;
    transition: transform 0.8s ease-in-out;
    will-change: transform;
}
.slide-item {
    flex: 0 0 auto;
    width: 460px;
    margin: 0 10px;
    text-align: center;
}
.slide-item img {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    object-fit: cover;
}
.slide-item h1 {
    margin-top: 10px;
    font-size: 18px;
    /* color: #b32929; */
    color:black;
    cursor: pointer;
}
.arrow {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}
.left { left: 10px; }
.right { right: 10px; }
/* @media (max-width: 768px) {
    .slide-item { width: 300px; }
    .h1-service { font-size: 40px; }
} */

@media (max-width: 768px) {

    .h1-service {
        font-size: 36px;
    }
    .slide {
        display: flex;
        flex-wrap: nowrap; /* Important to avoid wrapping */
    }
    
    /* Remove margin-right from the last slide item */
    .slide-item:last-child {
        margin-right: 0;
    }

    .slide-item {
        width: 280px;
        margin: 0 5px;
    }

    .slide-item img {
        height: 250px;
    }

    .gallery-container {
        padding: 15px;
    }

    .potential {
        padding: 40px 10px;
    }

}



.container1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.image-text-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    justify-content: center;
    text-align: center;
}

.main-image {
    max-width: 500px;
    width: 100%;
    height: auto;
}

.text-content {
    max-width: 500px;
    width: 100%;
}

.text-content h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #111;
}

.text-content p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.explore-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #FF6F61;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.explore-btn:hover {
    background-color: #E65B50;
}

/* 📱 Mobile Responsive Part */
@media (max-width: 768px) {
    .image-text-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .text-content h1 {
        font-size: 1.8rem;
    }

    .main-image {
        max-width: 90%; /* Reduce width for smaller screens */
    }

    .text-content {
        max-width: 90%;
    }
}


























.footer-bodyy {
    background: #131313;
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding: 50px 0;
    text-align: center;
}

/* Footer container */
.container-footer {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Footer heading */
.footer-1 h2 {
    font-size: 26px;
    color: #ff6600; /* Highlighted color */
    margin-bottom: 15px;
    font-weight: bold;
}

/* Footer Links Section */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 120px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Each column */
.column {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

/* Column headings */
.column h3 {
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 5px;
}

/* Footer lists */
.column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column ul li {
    margin: 8px 0;
}

.column ul li a {
    color: #bbbbbb;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.column ul li a:hover {
    color: #ffffff;
}

/* Copyright text */
.copyright {
    font-size: 14px;
    margin-top: 40px;
    color: #bbbbbb;
}

/* Make the footer fully centered */
.footer-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .column {
        text-align: center;
    }

    .column h3 {
        border-bottom: none;
    }
}


/* css for ads */
.ad-space {
  background-color: white;
  border-radius: 10px;
  padding: 1.5rem;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  text-align: center;
}

.ad-label {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ad-unit {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #f0f7ff, #e1eeff);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #a0c4ff;
  border-radius: 5px;
  margin-bottom: 1rem;
  color: #4a6fa5;
  font-weight: 500;
}

.ad-unit.horizontal {
  height: 90px;
}





