
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Navbar section 1 start */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar .logo {
    font-weight: bold;
    color:blue;
}

.navbar .main-nav {
    list-style: none;
    display: flex;
    gap: 50px;
    position: relative;
    right: 100px;
}

.navbar .main-nav li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}


/*navbar section 1  end */

/* Hero section start 2.. */

.hero {
    margin-top: 80px; 
    width: 100%;
    text-align: center;
}

.hero img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    cursor: pointer;
}

/* hero section 2 end */

/* Cards section 3 start... */

section h2 {
    text-align: center;
    margin: 40px 0 20px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    width: 200px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    border-radius: 10px;
}

/* section card end..  */


/*hand carafted section 4 start  */
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.hero-section {
    display: flex;
    width: 100%;
    min-height: 450px; 
    background-color: #003366;
    overflow: hidden;
    margin-top: 12px;
}

/* Left Text Side */
.content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: white;
}

.content-side h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.1;
}

.content-side p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 450px;
}

.btn-learn {
    display: inline-block;
    width: fit-content;
    background-color: white;
    color: #003366;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-learn:hover {
    background-color: #f0f0f0;
}


/* section 4 end.... */


/* section 5 */

.view-galler {
    display: block;
    background-color: #0a2540;
border-radius: 10px;
    margin: 20px auto;
    padding: 10px 20px;
    color: rgb(252, 251, 250);
    font-size: 18px;
    margin-top: 5px;
    border: none;
    letter-spacing: 0.5px;
}

.view-galler:hover {
    background-color: #ff9900;
    color: #fff;
    transform: scale(1.05);
}




/* Right Image Side */
.image-side {
    flex: 1;
}

.image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Isse image stretch nahi hogi */
    display: block;
}

/* Responsive (Mobile ke liye) */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }
    .content-side {
        padding: 40px 20px;
    }
}


/* Latest */
.latest-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.latest-cards img {
    width: 200px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

.latest-cards img:hover {
    transform: scale(1.05);
}



/* section 6 */

/* General */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #0a2540;
}

h2 {
  text-align: center;
  margin: 40px 0 20px;
  font-size: 28px;
  letter-spacing: 1px;
}

/* Customer Reviews */
.reviews-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.review-card {
  flex: 1 1 300px;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  background: #f9f9f9;
  min-width: 280px;
}

.review-card .quote {
  font-style: italic;
  margin-bottom: 15px;
}

.review-card .author {
  text-align: right;
  font-weight: bold;
  color: #0a2540;
}

/* Services Section */
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 20px;
}

.service-card {
  flex: 1 1 300px;
  text-align: center;
}

.service-card img {
  width: 100%;
  border-radius: 8px;
  height: 250px;
  object-fit: cover;
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 18px;
  margin-top: 5px;
  color: #0a2540;
  letter-spacing: 0.5px;
}

/* Learn More Button */
.learn-more {
  text-align: center;
  margin: 20px 0 60px;
}

.learn-more button {
  background-color: #0a2540;
  color: white;
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.learn-more button:hover {
  background-color: #ff9900;
  color: #fff;
  transform: scale(1.05);
}

.review-card .quote {
  font-style: italic;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  font-size: 18px; /* normal text size */
}

/* Large decorative quote mark */
.review-card .quote::before {
  content: "“";
  font-size: 50px; /* bada quote */
  color: #0a2540;  /* dark blue color */
  position: absolute;
  left: 0;
  top: -10px;
  font-weight: bold;
}


/* section 7 */

 /* General reset */
     *{margin:0;padding:0;box-sizing:border-box;font-family:Arial,sans-serif}

.footer-area{
  background:#bfeaf5;
  padding:80px 60px 40px;
}

/* Subscribe Box */
.subscribe-box{
  background:#fff;
  display:flex;
  max-width:900px;
  margin:0 auto 60px;
  border-radius:6px;
  overflow:hidden;
}

.subscribe-box img{
  width:45%;
  object-fit:cover;
}

.subscribe-text{
  padding:50px;
  text-align:center;
}

.subscribe-text h2{
  color:#0a3d91;
  margin-bottom:15px;
}

.subscribe-text p{
  font-size:14px;
  color:#555;
  margin-bottom:25px;
}

.subscribe-text button{
  background:#0a3d91;
  color:#fff;
  border:none;
  padding:12px 30px;
  border-radius:4px;
  cursor:pointer;
}

/* Links */
.footer-links{
  display:flex;
  gap:100px;
  margin-bottom:40px;
}

.footer-links h4{
  margin-bottom:10px;
  color:#222;
}

.footer-links p{
  font-size:14px;
  color:#333;
  margin-bottom:6px;
}

/* Bottom */
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid #9fd6e6;
  padding-top:20px;
  font-size:14px;
}

.social i{
  margin-left:15px;
  cursor:pointer;
}
