/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #020202;
}

/*--------------------------------------------page 01--------------------------------------------*/

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
  background: rgba(255, 255, 255, 0.9); 
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo img {
  height: 50px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 500;
}

.location {
  color: orange;
  font-size: 18px;
}

/* Carousel Fullscreen */
.carousel,
.carousel-inner,
.carousel-item {
  height: 100vh; 
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: fill;  
}

/*--------------------------------------------page 02--------------------------------------------*/

/* About Us */
.about {
  text-align: center;
  padding: 100px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.about h1 {
  font-size: 70px;
  margin-bottom: 30px;
  color: #1e83ec;
}

.about p {
  font-size: 20px;
  margin-bottom: 30px;
}

.about button {
  padding: 10px 20px;
  font-size: 20px;
  border: none;
  background: rgb(223, 222, 218);
  color: #000000;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.3s;
}

.about button:hover {
  background: #1e83ec;
  color: white;
}

/* Cards Section */
.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* About page cards */
.card {
  position: relative;
  width: 250px;       
  height: 520px;      
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  text-align: center;
  transition: 0.3s;
}


.about-card:hover .card-overlay {
  background: #9fbfe2;
}



.card-overlay {
  width: 100%;
  padding: 100px 40px;
}

.card h3 {
  margin-top: 10px;
  font-size: 20px;
}

/* Hover effect */
.card:hover .card-overlay {
  background: #9fbfe2;
}

/*--------------------------------------------page 03--------------------------------------------*/


/* Our Potential */
.our-potential{
  background-color: rgb(238, 238, 238);
  width: 100%;
}
.our-potential{
  text-align: center;
  margin: 0 auto;
}

.our-potential h1 {
  font-size: 70px;
  margin-bottom: 30px;
  color: #1e83ec;
}
.our-potential h2{
  color: goldenrod;
  font-size: 80px;
}
.our-potential p{
  font-size: 30px;
}
.first-line,
.second-line{
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
}
.first-line div,
.second-line div{
  text-align: center;
}


/*--------------------------------------------page 04--------------------------------------------*/

/* blogs */
.Blogs{
  text-align: center;
  padding: 100px 50px;
  max-width: 1200px;
  margin: 0 auto;
}
.Blogs h1{
  font-size: 70px;
  margin-bottom: 30px;
  color: #1e83ec;
}

/* Cards Container */
.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 25px; 
  justify-items: center;
  margin: 40px auto;
  max-width: 1400px; 
}

/* Single Card */
.card {
  width: 100%;
  max-width: 470px;   
  border: 1px solid #ddd;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}


.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 350px;   
  object-fit: cover;
}

.card-body {
  padding: 22px;
}


/*--------------------------------------------page 05--------------------------------------------*/
.career-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 80px;
  background: rgba(211, 211, 211, 0.95); /* optional for clarity */
}

.career-left {
  flex: 1;
  max-width: 60%;
}

.career-left h1 {
  font-size: 60px;
  color: #0071ce;
  margin-bottom: 50px;
}

.career-left p {
  font-size: 25px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.apply-btn {
  padding: 12px 24px;
  border: 2px solid #7a7777;
  border-radius: 30px;
  font-weight: bold;
  background-color: white;
  cursor: pointer;
  transition: 0.3s;
}

.apply-btn:hover {
  background-color: #0071ce;
  color: white;
}

.career-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.career-right img {
  width: 350px;
  max-width: 100%;
}


/*--------------------------------------------page 06--------------------------------------------*/

.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.contact-section h1 {
  font-size: 60px;
  margin-bottom: 40px;
  color: #0071ce;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
  max-width: 900px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 30px;
}

.form-group input {
  padding: 12px;
  background: #f5f5f5;
  border: none;
  border-bottom: 1px solid #ccc;
  font-size: 20px;
}

.form-submit {
  grid-column: span 2;
  text-align: left;
}

.form-submit button {
  padding: 10px 30px;
  border: 2px solid #0071ce;
  background: white;
  color: #0071ce;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.form-submit button:hover {
  background: #0071ce;
  color: white;
}

/*--------------------------------------------page 07--------------------------------------------*/

.Our-Stores{
  text-align: center;
  padding: 100px 50px;
  max-width: 1200px;
  margin: 0 auto;
}
.Our-Stores h1{
  font-size: 70px;
  margin-bottom: 30px;
  color: #1e83ec;
}
 .map {
    width: 100vw;
    height: 70vh;
    display: flex;
    justify-content: center;
  }

  .map iframe {
    width: 100%;
    height: 70%;
    border: 0;
  }


/*--------------------------------------------page 08--------------------------------------------*/


  /* Footer Styles */
.footer {
  background-color: #f8f8f8;
  color: #111111;
  font-family: 'Segoe UI', sans-serif;
  padding: 60px 30px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-logo img {
  max-width: 250px;
}

.footer-about, .footer-contact, .footer-links {
  flex: 1 1 250px;
}

.footer-about h4,
.footer-contact h4,
.footer-links h4 {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.footer-about p,
.footer-contact p,
.footer-links ul li a {
  font-size: 20px;
  line-height: 1.6;
  color: #666;
  text-decoration: none;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid #585656;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: #000000;
  font-size: 14px;
}

.social-icons {
  margin-top: 20px;
}

.social-icons i {
  margin: 0 8px;
  font-size: 18px;
  color: #000000;
  cursor: pointer;
}

.social-icons i:hover {
  color: #f7931e;
}


/* ================== RESPONSIVE ================== */

/* Large Tablets and Laptops (max-width: 1200px) */
@media (max-width: 1200px) {
  .about h1,
  .our-potential h1,
  .Blogs h1,
  .Our-Stores h1 {
    font-size: 50px;
  }
  .career-left h1 {
    font-size: 45px;
  }
  .career-left p {
    font-size: 20px;
  }
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  /* Navbar */
  .header {
    padding: 15px 20px;
  }
  .nav {
    gap: 10px;
  }
  .nav a {
    font-size: 12px;
  }

  /* About page cards */
  .cards {
    flex-wrap: wrap;
  }
  .card {
    width: 45%;
    height: 400px;
  }

  /* Blogs cards */
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Career section */
  .career-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .career-left {
    max-width: 100%;
  }
  .career-right img {
    margin-top: 30px;
    width: 280px;
  }

  /* Contact form */
  .contact-form {
    grid-template-columns: 1fr;
  }
  .form-submit {
    grid-column: span 1;
    text-align: center;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  /* Headings */
  .about h1,
  .our-potential h1,
  .Blogs h1,
  .Our-Stores h1 {
    font-size: 40px;
  }
  .about p,
  .career-left p {
    font-size: 18px;
  }

  /* About cards */
  .card {
    width: 100%;
    height: 350px;
  }

  /* Blogs cards */
  .cards-container {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-about, 
  .footer-contact, 
  .footer-links {
    flex: 1 1 100%;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .header {
    flex-direction: column;
    gap: 10px;
  }
  .logo img {
    height: 40px;
  }
  .location {
    font-size: 14px;
  }
  .about button {
    font-size: 16px;
    padding: 8px 16px;
  }
  .career-left h1 {
    font-size: 32px;
  }
  .contact-section h1 {
    font-size: 36px;
  }
}
