*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
    scroll-behavior:smooth;
}

body{
    color:#333;
}

/* Navbar Styling */
.navbar {
  background: #ffffff;
  padding: 18px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo a {
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: #1a1a1a;
  letter-spacing: 1px;
}

.logo span {
  color: #6c3df4; /* Accent color */
}

/* Base Navbar */
.navbar {
  background: #fff;
  padding: 18px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo a {
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: #1a1a1a;
}

.logo span {
  color: #6c3df4;
}

/* Nav Links Desktop */
.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin-left: 30px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #4a90e2;
}

.btn-contact {
  padding: 8px 18px;
  border-radius: 6px;
  background: #4a90e2;
  color: #fff !important;
}

/* Hamburger (Hidden on Desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #333;
  margin-bottom: 5px;
  border-radius: 2px;
}

/* Mobile Styles */
@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }

  .nav-links a {
    margin: 15px 0;
  }

  .nav-links.active {
    display: flex;
  }
}


/* HERO */
.hero{
    height:100vh;
    background:linear-gradient(to right,#0f2027,#203a43,#2c5364);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:20px;
}

.hero h1{
    font-size:48px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    max-width:700px;
}

.btn{
    margin-top:25px;
    padding:14px 30px;
    background:#00d4ff;
    color:#000;
    border:none;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.btn:hover{
    background:#fff;
}

/* SECTIONS */
section{
    padding:44px 20px;
    text-align:center;
}

.container{
    max-width:1100px;
    margin:auto;
}

.section-title{
    font-size:36px;
    margin-bottom:20px;
}

.section-desc{
    max-width:700px;
    margin:auto;
    margin-bottom:50px;
    color:#666;
}



.why-choose-us {
  padding: 60px 0;
}

.why-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.why-image img {
  max-width: 100%;
  border-radius: 10px;
}

.why-content h2 {
  margin-bottom: 20px;
  font-size: 32px;
}

.why-content ul {
  list-style: none;
  padding: 0;
}

.why-content ul li {
  margin-bottom: 12px;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
  text-align: left;
}

.why-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2a2a2a;
  font-weight: bold;
}


/* CTA */
.cta{
    background:linear-gradient(to right,#00c6ff,#0072ff);
    color:#fff;
}

/* CONTACT */
form{
    max-width:600px;
    margin:auto;
}

input, textarea{
    width:100%;
    padding:14px;
    margin:10px 0;
    border:1px solid #ccc;
    border-radius:8px;
}

button{
    padding:14px 30px;
    border:none;
    background:#0072ff;
    color:#fff;
    border-radius:30px;
    cursor:pointer;
    font-weight:600;
}

button:hover{
    background:#005ecb;
}

footer{
    background:#0a0f2c;
    color:#aaa;
    padding:20px;
    text-align:center;
}

/* MOBILE */
@media(max-width:768px){
    .hero h1{font-size:32px;}
}


.footer {
  background: #111;
  color: #bbb;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 20px;
  text-align: left;
}

.footer-col p,
.footer-col li {
  margin-bottom: 12px;
  font-size: 15px;
  text-align: left;
}

.footer-col i {
  margin-right: 8px;
  color: #00aaff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  cursor: pointer;
  transition: 0.3s;
}

.footer-col ul li:hover {
  color: #00aaff;
}

/* Logo */
.logo {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-align: left;
}

.logo span {
  color: #00aaff;
}

/* Newsletter */
.newsletter-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: none;
  border-radius: 4px;
}

.newsletter-form button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #ddd;
  cursor: pointer;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: #00aaff;
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 14px;
}


.hero-section {
  min-height: 95vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #f4f6fb 50%, #e9edf5 50%);
  padding: 10px 20px;
}

.hero-container {
  max-width: 105vh;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}

.hero-left h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: #ba7575;
}

.hero-left h1 span {
  color: #4a90e2;
}

.hero-left p {
  margin: 25px 0;
  font-size: 18px;
  color: #555;
  max-width: 500px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #4a90e2;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #1b0033;
  transform: translateY(-3px);
}

.hero-right img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  filter: grayscale(30%);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Responsive */
@media(max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 38px;
  }

  .hero-left p {
    margin-left: auto;
    margin-right: auto;
  }
}


.about-section {
  background: #eef1f7;
  padding: 120px 20px;
  text-align: center;
}

.about-container {
  max-width: 850px;
  margin: auto;
}

.about-section h2 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #1a0033;
}

.about-section p {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #1d1d3f;
}

.featured-text {
  margin-top: 60px;
  font-weight: 700;
  font-size: 20px;
  color: #1a0033;
}

/* Responsive */
@media(max-width: 768px) {
  .about-section h2 {
    font-size: 40px;
  }

  .about-section p {
    font-size: 18px;
  }
}


.services-section {
  padding: 120px 0 20px 0;
  background: #f7f9fc;
  text-align: center;
}

.services-section-btn {
  padding: 0px 0 20px 0;
  background: #f7f9fc;
  text-align: center;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1a0033;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card i {
  font-size: 36px;
  color: #4a90e2;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1a0033;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media(max-width:768px){
  .section-title{
    font-size:32px;
  }
}
.why-image {
    width: 50%;
}
.cta h2 {
    font-size: 40px;
}


.error {
  color: red;
  font-size: 13px;
  float: left;
}

#formResponse {
  margin-top: 15px;
  font-weight: 600;
}
