    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
  margin:0;
    font-family: Arial, sans-serif;
}
.hero-section {
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
     
}

/* Intro text styling */
.intro-text h2 {
  font-size: 2.5rem;
  color: #27ae60;
  opacity: 0; /* start hidden */
  transform: translateY(20px); /* start slightly down */
  animation: fadeSlideUp 1.5s ease forwards;
  animation-delay: 0.5s; /* optional delay */
}

/* Animation keyframes */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}












.principal-section {
    background: #e9edf2;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

/* Main Card Container */
.principal-container {
    background: #f3f3f3;
    max-width: 1100px;
    width: 100%;
    padding: 50px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Image Styling */
.principal-image img {
    width: 320px;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid #0a2a4a;
}

/* Content Styling */
.principal-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.principal-content h2 {
    font-size: 18px;
    color: #0077B6;
    letter-spacing: 2px;
    text-transform: uppercase;
   
}
.principal-content h2{
    font-size: 18px;
    color: #27ae60;
    
    
}
.principal-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
}

.principal-content h4 {
    font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
    .principal-container {
        flex-direction: column;
        text-align: center;
    }

    .principal-image img {
        width: 260px;
        height: 350px;
    }
}









.team-section {
    padding: 80px 10%;
    background: #f4f9ff;
    text-align: center;
}

.team-heading {
    font-size: 32px;
    margin-bottom: 50px;
    color: #023E8A;
}

/* Row */
.owner-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Card */
.owner-card {
    background: white;
    width: 300px;
    height:400px;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.owner-card:hover {
    transform: translateY(-10px);
}

/* Image */
.owner-card img {
    width: 250px;
    height: 290px;
    
    object-fit: cover;
    border: 4px solid #0077B6;
}

/* Text */
.owner-card h3 {
    margin-top: 15px;
    font-size: 16px;
    color: #023E8A;
}

.owner-card p {
    color: #555;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .owner-row {
        flex-direction: column;
        align-items: center;
    }
}










.about-section{
    padding: 80px 20px;
    background: #f8fbff;
}

/* container */
.mission-vision{
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* box */
.box{
    background: white;
    width: 380px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* top border animation */
.box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0%;
    height:4px;
    background:#0077B6;
    transition:0.4s;
}

/* hover effect */
.box:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* border animation on hover */
.box:hover::before{
    width:100%;
}

/* heading */
.box h2{
    color:#0077B6;
    margin-bottom: 15px;
    font-size: 24px;
}

/* icon animation */
.box h2 i{
    margin-right:10px;
    transition:0.4s;
}

/* icon rotate */
.box:hover h2 i{
    transform: rotate(15deg) scale(1.2);
    color:#27ae60;
}

/* paragraph */
.box p{
    color:#555;
    font-size:17px;
    line-height:1.6;
}





.stats {
    display: flex;
    justify-content: space-around;
    padding: 40px 5%;
    background: #f4f4f4;
    font-weight: bold;
    margin-top: 70px;
}











@media (max-width:1024px){

    /* Hero Section */
    .hero-section{
        height:500px;
    }

    .intro-text h2{
        font-size:32px;
    }

    .intro-text p,
    .intro-text ul li{
        font-size:16px;
    }

    /* Overview Section */
    .overview-container{
        flex-direction:column;
        text-align:center;
    }

    .overview-text{
        width:100%;
    }

    .overview-image{
        width:80%;
        margin-top:20px;
    }

    /* Owner Cards */
    .owner-row{
        gap:20px;
    }

.owner-card {
    background: white;
    width: 300px;
    height:400px;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.owner-card:hover {
    transform: translateY(-10px);
}

/* Image */
.owner-card img {
    width: 250px;
    height: 290px;
    
    object-fit: cover;
    border: 4px solid #0077B6;
}
    /* Mission Vision */
    .box{
        width:320px;
                padding: 25px;

    }

    /* Stats Section */
    .stats{
        flex-wrap:wrap;
        gap:20px;
        text-align:center;
    }

}


@media (max-width:768px){

    .hero-section {
        height: 350px; /* medium height for tablets */
        padding: 0 20px;
        text-align: center;
        align-items: center; /* center vertically */
    }

    .intro-text h2 {
        font-size: 2rem; /* slightly smaller than desktop */
        line-height: 1.2;
        transform: translateY(15px); /* moderate vertical offset for animation */
        animation-delay: 0.4s; /* slightly shorter delay */
    }

    

}



@media(max-width:480){

    
    .hero-section {
        height: 300px; /* smaller height for mobile */
        padding: 0 15px;
        text-align: center;
        align-items: flex-end; /* optional: bring text a bit lower */
    }

    .intro-text h2 {
        font-size: 1.5rem; /* smaller font for mobile */
        line-height: 1.3;
        transform: translateY(10px); /* less vertical offset */
        animation-delay: 0.3s; /* optional shorter delay */
    }
}
