/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  background: white;
  scroll-behavior: smooth;
}

.hero {
  position: relative;
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

.hero .content {
  position: relative;
  z-index: 1;
}

.hero .content p{
  margin-top: 10px;
  padding-left: 16px;
  padding-right: 16px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  background: #00bcd4;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #0097a7;
}

.services {
  padding: 4rem 2rem;
  background: #1a1a1a;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}



.card {
  background: #2a2a2a;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #00bcd4;
  margin-bottom: 1rem;
}


.logo-container{
  position: absolute;
  top:12px;
  left:10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo1{
  height: 50px;
  width: auto;
}
.logo2{
  filter: invert(1);
  height: 60px;
  width: 140px;
}
.contact-us-container {
  position: absolute;
  top: 30px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border:1px solid #fff;
  border-radius: 10px;
}

.contact-us {
  text-decoration: none ;
  position: relative;
  background: transparent;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  z-index: 0;
  transition: color 0.3s ease;
}
.cta-form input,
.cta-form textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-family: inherit; /* 👈 Makes it inherit the same font as the rest of the page */
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    background: #fff; /* or your preferred background */
    color: #000;      /* adjust if needed */
    resize: vertical;
}


.contact-logo{
  padding-right:5px;
  filter: invert(1);
}
.contact-us:hover {
  color: #00bcd4;
  text-shadow: 0 0 8px #00bcd4, 0 0 16px #00bcd4;
  box-shadow: 0 0 10px #00bcd4, 0 0 20px #00bcd4;
}




@keyframes glow {
  from {
    text-shadow: 0 0 10px #00bcd4;
  }
  to {
    text-shadow: 0 0 20px #00bcd4, 0 0 30px #00bcd4;
  }
}
.services {
  padding: 4rem 2rem;
  background: #111;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #fff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Exactly 3 cards per row */
  gap: 2rem;
  justify-content: center;
}

@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
  }
}


.card {
  background: #1e1e1e;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  color: #ccc;
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 188, 212, 0.4);
  background: #222;
  color: #fff;
}

.card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00bcd4;
}

.card h3 {
  font-size: 1.3rem;
  color: #00bcd4;
  margin-bottom: 0.6rem;
}
.site-footer {
  background-color: #0f0f0f; /* Changed from #5e00d3 to black-themed */
  color: #ccc;
  padding: 3rem 2rem;
  font-size: 0.9rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-cols h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #00bcd4; /* Matches the accent color */
}

.footer-cols a,
.footer-cols p {
  color: #aaa;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.3s;
}

.footer-cols a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
}

.footer-links {
  margin-top: 0.5rem;
}

.footer-links a {
  margin: 0 0.5rem;
  color: #aaa;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.who-we-are {
  background: #111;
  padding: 4rem 2rem;
  text-align: center;
  
}

.who-we-are h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.who-we-are p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.6;
}

.experience-section {
  background-color:  #111;
  padding: 4rem 1rem;
  text-align: center;
}

.experience-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #00bcd4;
  margin-bottom: 0.5rem;
}

.experience-header p {
  font-size: 1.2rem;
  color: #fff;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.experience-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.experience-card {
  background-color: #1a1a1a;
  border:1px solid #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  flex: 1 1 220px;
  max-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 188, 212, 0.15);
}

.experience-card h3 {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.experience-card p {
  margin-top:17px;
  color: #ffffffdf;
  font-size: 0.98rem;
}

.exp-icon {
  height: 22px;
  width: auto;
}


.why-us {
  background: #1a1a1a;
  padding: 4rem 2rem;
  color: #eee;
  text-align: center;
}

.why-us h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #00bcd4;
}



.reasons-grid-wrapper {
  display: flex;
  justify-content: center;
}




.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1400px;
  padding: 0 1rem;
}

@media (max-width: 1024px) {
  .reason {
    width: calc(50% - 1.5rem);
  }
}

@media (max-width: 600px) {
  .reason {
    width: 100%;
  }
}
.reason {
  width: calc(25% - 1.5rem); /* Adjust for gap */
  min-width: 260px;
  background: linear-gradient(145deg, #1e1e1e, #292929);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  border: 1.5px solid #00bcd4;
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
  position: relative;
}

.reason:hover {
  transform: translateY(-8px);
  background: linear-gradient(145deg, #222, #2a2a2a);
  box-shadow: 0 12px 24px rgba(0, 188, 212, 0.4);
}

.reason h3 {
  color: #00bcd4;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 2px rgba(0, 188, 212, 0.4);
}

.reason p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}
.cta-form-section {
  padding: 60px 20px;
  background: #1a1a1a;
}

.cta-form-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.cta-info {
  flex: 1;
  min-width: 280px;
  position: relative;
  bottom: 20px;
  margin-right: 20px;
  margin-left:20px;
}

.cta-info h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #fff;
}

.cta-info p {
  font-size: 16px;
  color: #a6a3a3;
  line-height: 1.6;
  text-align: justify;
}

.cta-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-form input {
  flex: 1;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.cta-form .btn {
  padding: 12px;
  font-size: 16px;
  border: none;
  color: white;
  background-color: #222; /* Match with your site theme */
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.cta-form .btn:hover {
  background-color: #444;
}

.form-message {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
}

.whatsappicon,
.mailicon{
  display: flex;
  cursor: pointer;
}
.whatsappicon img,
.mailicon img{
  height: 30px;
  height:20px;
  padding-right: 6px;
  position: relative;
  bottom:2px;
}
.mailicon img{
  filter: invert(1);
}

.btn.faded {
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.3s ease;
}


