*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-top: 60px; /* navbar ke liye space */
    font-family: Arial, sans-serif;
}

/* ===== NAVIGATION BAR - SEHSA COLORS ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #0a5c36;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
nav ul li { position: relative; }
nav ul li a {
    display: block;
    color: white;
    padding: 18px 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: 0.3s;
}
nav ul li a:hover {
    background: #FF9800;
    color: white;
}

/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #0a5c36;
    min-width: 200px;
    z-index: 1;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    top: 100%;
    left: 0;
}
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    display: block;
}
.dropdown-content a:hover { background-color: #FF9800; }
.dropdown:hover .dropdown-content { display: block; }

/* ===== CONTAINER ===== */
.container {
    border: 0px solid black;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 20px;
}
.container .container-left {
    width: 45%;
    text-align: center;
}
.container .container-left button {
    width: 200px;
    height: 60px;
    font-size: 24px;
    border-radius: 50px;
    color: white;
    background: #FF9800;
    border: none;
    cursor: pointer;
    box-shadow: 5px 5px 10px grey;
    transition: 0.3s;
}
.container .container-left button:hover { transform: scale(1.05); }

.container .container-right {
    width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container .container-right img {
    width: 70%;
    max-width: 400px;
    animation: round 25s infinite linear;
}

@keyframes round {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* CONTACT LEFT IMAGE CIRCLE */
.contact-left img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    background: white;
    padding: 8px;
    margin: 0 auto 20px;
    display: block;
    border: 3px solid #FF9800;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
 
.featured-icon {
  width: 180px;
  height: 180px;
  padding: 7px;
  box-shadow: 5px 5px 10px grey;
  border-radius: 100px 0px 100px 0px;
  font-size: 100px;
  transition: 1.5s;
  text-align: center;
}
.featured-icon:hover { transform: rotate(360deg); }
.featured-icon p { font-size: 20px; font-weight: bold; margin-top: 8px; }

hr {
    width:20%;
    height: 5px;
    background-color:#02A237;
    margin: 5px auto;
    border: none;
}
.featured-outer1 {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content:center;
    flex-wrap: wrap;
    gap: 20px;
}
.featured-img {
 width: 220px;
 height: 220px;
 transition: 1s;
 box-shadow: 0 4px 10px rgba(0,0,0,0.2);
 border-radius: 50%;
 object-fit: cover;
 overflow: hidden;
}
.featured-outer1 img { width: 100%; height: 100%; border-radius: 50%; }
.featured-img:hover { transform: scale(1.1); }

.content {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    gap: 30px;
    box-shadow: 9px 9px 10px grey;
    flex-wrap: wrap;
    padding: 20px;
}
.content .left { flex: 1; min-width: 300px; }
.content .right { flex: 1; min-width: 300px; }
.content .left img { width: 100%; border-radius: 10px; }
.content .right p {
    font-size: 17px;
    text-align: justify;
    line-height: 1.6;
}

.newsletter {
    min-height: 400px;
    background: url(images/slider6.jpeg) center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}
.newsletter .email-box {
    width: 90%;
    max-width: 900px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    background-color: rgba(0, 0, 0,0.6);
    border-radius: 50px;
}
.newsletter .email-box input[type="email"] {
    flex: 1;
    min-width: 250px;
    height: 60px;
    border-radius: 50px;
    padding: 5px 20px;
    font-size: 18px;
    outline: none;
    border: 3px solid yellow;
}
.newsletter .email-box input[type="submit"] {
    width: 200px;
    height: 60px;
    border-radius: 50px;
    background-color: #FF9800;
    color: white;
    outline: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    font-weight: bold;
}

.footer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 3%;
    background-color: #F5F5F5;
    box-shadow: 5px 5px 10px grey;
    padding: 30px 20px;
}
.footer-content {
    width: 25%;
    min-width: 250px;
    padding: 15px;
}
.footer-content p { text-align: left; margin-top: 10px; font-size: 16px; }
.footer-content p i { font-size: 20px; color: #0a5c36; margin-right: 8px; }

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 992px) {
    nav ul li a { padding: 15px 18px; font-size: 15px; }
    .container .container-left, .container .container-right { width: 100%; }
    .container .container-right img { width: 60%; }
    .footer-content { width: 50%; }
}

@media (max-width: 768px) {
    body { padding-top: 60px; }
    nav ul { flex-direction: column; display: none; } /* navbar.php wala JS isay handle karega */
    .container { padding: 20px 15px; }
    .container .container-left button { width: 180px; height: 50px; font-size: 20px; }
    .featured-icon { width: 140px; height: 140px; font-size: 70px; }
    .featured-img { width: 160px; height: 160px; }
    .content { flex-direction: column; }
    .newsletter .email-box { flex-direction: column; padding: 25px; }
    .newsletter .email-box input[type="email"],
    .newsletter .email-box input[type="submit"] { width: 100%; }
    .footer-content { width: 100%; text-align: center; }
    .footer-content p { text-align: center; }
}

@media (max-width: 480px) {
    .container .container-right img { width: 80%; }
    .featured-icon { width: 120px; height: 120px; font-size: 60px; }
}