
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #0a0047;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  
  animation: fadeIn 1.5s ease-in-out;

}

/* Header Section */
.header {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #0a0047;
  position: relative;
  background: url("images/bg1.svg") no-repeat center center;
  background-size: cover;
}


nav {
  position: fixed;                  
  top: 0;
  left: 0;
  width: 100%;  
  padding: 15px 60px;
  display: flex;                  
  justify-content: space-between;  
  align-items: center;             
background: #0a0047;
  z-index: 1000;
}

nav .logo {
  font-size: 25px;
  font-weight: bold;
  color: #fff;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 50px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #d4af37;
   transition: 0.3s;
}



.hero {
  margin-top: 7rem;
  text-align: center;
  margin-bottom: 3rem;
}
.hero h1 {
  margin: 100px auto 10px; 
  font-size: 77px;
  letter-spacing: 2px;
  line-height: 1;
  text-align: center; 
  max-width: 80%; 
}
.hero p {
  margin: 20px auto 0;
  max-width: 74rem;
  font-size: 21px;
  
}

.who{
  max-width: 80%;
  margin: 0 auto;
  padding: 50px 0;
}

.who h2, .work h2 {
  font-size: 35px;
  margin-bottom: 20px;
  text-align: left;
}

.who p{
  font-size: 20px;
}

.work {
  max-width: 80%;
  margin: 0 auto;
  padding: 20px 0;
}

.work h3 {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px; 
  margin-top: 30px;
}

.badges span {
  display: inline-block;
  padding: 10px 20px;
  border: 1.5px solid #222;
  border-radius: 8px;       
    font-size: 16px;
  font-weight: 500;
  color: #222;              
  background: white;   
}

.section-break {
  margin: 70px 0;                         
 background: #0a0047;
   text-align: center;
  padding: 50px 10%;                        
  border-radius: 8px;                       
}

.section-break h3{
   color: #fff;
}
.section-break p{
   color: #fff;
}


.break{
  max-width: 1000px;                         
  margin: 0 auto;                          
}

.break h3 {
  font-size: 22px;
  font-weight: 500;
}

.break p {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.2;                            
}

.process {
  margin: 100px auto;
  padding: 0 20px;
}

.process-header {
  text-align: left;
  max-width: 80%;
  margin: -20px auto 4px; 
  padding: 0;
}

.process-header h2 {
  font-size: 35px;
  margin-bottom: 10px;
}

.process-header p {
  font-size: 21px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 50px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 40px;                    
  max-width: 900px;
  margin: 0 auto;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 30px;                     
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.step::before {
  content: attr(data-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #0a0047;
  border-radius: 50%;
  flex-shrink: 0;
}

.step h3 {
  font-size: 21px; 
  margin-bottom: 6px;
}

.step p {
  font-size: 18px; 
  line-height: 1.5; 
  color: #333;
}

/* Lenses */
.lenses {
  text-align: center;
  padding: 10px 10%;
  margin-top: -20px;
}

.lenses h3 {
  font-size: 25px;
  justify-content: left;
}

.lenses p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 30px;
}
.lenses .cards {
  display: flex;
  justify-content: center;
  gap: 55px;
  flex-wrap: wrap; 
}

.lenses .cards img {
  margin-top: 30px;
  width: 100%;          
  max-width: 360px;    
  height: auto;         

}



/* Accord Section */
.accord {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 10px 0;
  max-width: 1200px;
  margin: 0 auto;
}


.accord .text { flex: 1; }


.accord h2 {
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: 700;
  text-align: left;
}


.accord p {
  border: 1px solid #000;
  border-radius: 8px;
  padding: 14px 18px;
  background: #fff;
  margin: 20px 0;
  font-size: 18px;
  line-height: 1.6;
  max-width: 90%;
  margin-left: 40px; 
}

/* Indented list */
.accord ul {
  list-style: none;
  margin-top: 40px;
  padding-left: 70px; 
}

.accord ul li {
  position: relative;
  margin: 12px 0;
  padding-left: 20px; 
  font-size: 18px;
  line-height: 1.6;
  color: #444;
}

.accord ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
}




/* Expect Section */
.expect {
  text-align: center;
  padding: 50px 10%;
}

.expect h3 {
  font-size: 25px;
}

.expect p {
  font-size: 20px;
  margin: 0 auto 40px;
}
.expect .cards {
  margin: 50px 0;
  display: flex;
  flex-wrap: wrap;           
  justify-content: center;   
  gap: 5px;
  margin-bottom: -25px;
}

.expect .cards img {
  width: 350px;
  
}


/* Why Us Section */
#why-us {
  padding: 10px 8%;
  margin-top: -30px;
 
}

#why-us h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 10px;
}


.profiles {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 50px;
}

.profile {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.profile-header img {
  width: 120px;
  height: 130px;
  object-fit: cover;
  border-radius: 10%;
}

.profile-header h3 {
  font-size: 22px;
}

.profile-header .role {
  font-size: 15px;
  font-weight: 500;
  color: #666;
}

.profile-body p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
}


/* ===========================
   CONTACT SECTION
=========================== */
#contact-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  background-color: #f0f0f0;
  margin: 30px auto;
  width: 80%;
  border-radius: 20px;
}

.contact-info {
  width: 40%;
}

.contact-info h2 {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-info span {
  font-weight: bold;
}

.contact-info p {
  font-size: 16px;
}

.contact-item {
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-bottom: -10px;
}

.contact-item i {
  font-size: 0.75rem;
  color: #0a0047;
  margin-right: 3px;
  vertical-align: middle;
}

.contact-item small {
  font-weight: bold;
  margin-top: 20px;
}

.contact-item a {
  color: #0a0047;
  text-decoration: none;
  font-size: 13px;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-form {
  width: 50%;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 10px;
    flex-direction: column; 
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px;
  font-size: 13px;
  border: 1px solid #0a0047;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #0a0047;
  box-shadow: 0 0 5px rgba(23, 162, 141, 0.5);
}

.contact-form textarea {
  height: 120px;
  resize: none;
  font-family: "Poppins";
}

.contact-form button {
  padding: 12px;
  font-size: 14px;
  background-color: #0a0047;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #d4af37;
  border: 1px solid black;
  color: black;
  transition: background 0.3s;
}


footer {
  background: #0a0047;
  text-align: center;
  padding: 10px;
}

footer p {
  color: white;
  font-size: 14px;
}


@media (max-width: 1024px) {

.header {
  min-height: 80vh;
  }
.hero {
  margin-top: 7rem;
}  
.hero h1 {
  font-size: 60px;
}

.hero p {
  font-size: 17px;
  
}

.who{
  max-width: 80%;
  margin: 0 auto;
  padding: 50px 0;
}

h2 {
  font-size: 35px;
}

p{
  font-size: 17px;
}

h3{
font-size: 35px;
}

.work {
  max-width: 80%;
  margin: 0 auto;
  padding: 20px 0;
}

.work h3 {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.break h3 {
  font-size: 18px;

}


.process-header p {
  font-size: 18px;

}

.steps {
  margin-left: 20px;
}




.step::before {

  width: 36px;
  height: 36px;
  font-size: 16px;
  font-weight: 600;
}

.step h3 {
  font-size: 19px; 

}

.step p {
  font-size: 15px; 

}
.accord h2 {
 max-width: 80%;
 margin-left: 20px;
}

/* Indented paragraph */
.accord p {
  font-size: 17px;
}

.accord ul li { 
  font-size: 16px;
}


 .profiles {
    grid-template-columns: 1fr; 
    gap: 40px;
  }
.contact-form textarea {
  height: 300px;
 
}
}
@media (max-width: 480px) {
.header {
  min-height: 35vh;
  }
    nav {
    flex-direction: row;               
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
  }

  nav .logo {
    font-size: 20px;
    margin-bottom: 0;
  }

  nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  nav ul li {
    position: relative;
  }

 
  nav ul li:not(:last-child)::after {
    content: "|";              
    margin-left: 8px;
    color: #fff;              
    opacity: 0.7;
  }

  nav ul li a {
    font-size: 13px;
    text-decoration: none;
    color: #fff;
  }

  /* Hero */
  .hero h1 {
    margin-top: 0px;
    font-size: clamp(32px, 6vw, 70px);
    font-weight: 900;
    letter-spacing: normal;
    max-width: 100%;
  }

  .hero p {
    font-size: 14px;
    padding: 0 10px;
    max-width: 85%;
  }
.who h2, .work h2 {
  font-size: 25px;
}

.who p{
  font-size: 14px;
}
.work h3 {
  font-size: 25px;
}

.badges {
  gap: 13px; 
  margin-top: 20px;
}

.badges span {      
    font-size: 13px;
  font-weight: 400;
  text-align: center;
  
}


.process {
  margin: 60px auto;
}

.process-header h2 {
  font-size: 25px;
  margin-bottom: 10px;
}

.process-header p {
  font-size: 16px;
  margin-bottom: 40px;
}

  .steps {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
  }

  .step h3 {
    font-size: 18px;
  }

  .step p {
    font-size: 14px;
  }

.step::before {

  width: 25px;
  height: 25px;
  font-size: 14px;
}

.lenses h3 {
  font-size: 22px;
line-height: 1.2;
}

.lenses p {
  font-size: 14px;
   max-width: 600px;

}
.lenses .cards {
  gap: 10px;
}

.lenses .cards img {
  margin-top: 10px;
  width: 80%;          
  max-width: 360px;    
       

}


/* Accord Section */
.accord {
  gap: 20px;
  padding: 10px 0;
  margin: 10px auto;
}




.accord h2 {
  margin-bottom: 25px;
  font-size: 25px;
  font-weight: 700;
  text-align: left;
  max-width: 80%;
  margin-left: 50px;
    line-height: 1.3;
}


.accord p {
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.6;
  max-width: 80%;
  margin-left: 50px; 
}

/* Indented list */
.accord ul {
  margin-top: 30px;
}

.accord ul li {
  margin: 10px 0;
  padding-left: 30px; 
  font-size: 14px;
  line-height: 1.3;
    max-width: 80%;
   

}



.expect {
  text-align: center;
  padding: 30px 10%;
}

.expect h3 {
  font-size: 22px;
}

.expect p {
  font-size: 14px;
  margin-bottom: 10px;
}
.expect .cards {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;           
  justify-content: center;   
  gap: 5px;
  margin-bottom: -25px;
}

.expect .cards img {
  width: 250px;
  
}


/* Why Us Section */
#why-us {
  padding: 10px 8%;
  margin-top: 20px;
 
}

.profile-body p {
  font-size: 14px;
 
}




#contact-section {
  width: 90%;
    flex-direction: column;
    gap: 20px;
    padding: 40px 15px;
}

.contact-info {
  text-align: center;
  width: 90%;
}

.contact-info h2 {
  font-size: 18px;
  margin-bottom: 10px;
}


.contact-info p {
  font-size: 14px;
  margin-bottom: 10px;
}


.contact-item a{
  font-size: 12px;
  margin-top: 0;
  margin-bottom: 0;
}
  .contact-text,
  .contact-form {
    width: 100%;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 12px;
  }

  .contact-form button {
    width: 100%;
    padding: 14px;
    font-size:12px;
  }
  
  .contact-form textarea {
  height: 100px;
}
  .section-break {
  margin: 20px 0;                         
 background: #0a0047;
   text-align: center;
  padding: 30px 10%;                        
  border-radius: 8px;                       
}

.section-break h3{
   color: #fff;
}
.section-break p{
   color: #fff;
}


.break h3 {
  font-size: 14px;
}

.break p {
  font-size: 14px;                           
}

}