*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*Section Header */

.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #2c3e50, #3498db);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

nav {
  max-width: 1200px;
  margin: auto;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo img {
  width: 140px;
  height: auto;
  filter: brightness(0) invert(1);
  
}


.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #f1c40f;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #f1c40f;
}

.nav-links li a:hover::after {
  width: 100%;
}


.loginbtn {
  padding: 8px 20px;
  border: none;
  border-radius: 25px;
  background: #f1c40f;
  color: #2c3e50;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;

}

.loginbtn:hover {
  
  color: #3498db;
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);

}


.menu-icon {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;

}



@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    flex-direction: column;
    width: 240px;
    padding: 25px 20px;
    border-radius: 0 0 12px 12px;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .nav-links.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    margin: 12px 0;
  }

  .menu-icon {
    display: block;
  }
}

/* section main */


.about {
  position: relative;
  background: url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}


.about .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.7));
  z-index: 1;
}


.maincontent {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
  animation: fadeInUp 1.2s ease forwards;
}


.maincontent h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ff9966, #ff5e62);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.maincontent p {
  font-size: 18px;
  color: #f2f2f2;
  line-height: 1.8;
  margin-bottom: 35px;
}


.hero-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff7f50, #ff416c);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 126, 95, 0.4);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 126, 95, 0.6);
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 768px) {
  .maincontent h1 {
    font-size: 34px;
  }
  .maincontent p {
    font-size: 16px;
  }
  .hero-btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}


/* section update */


.weekly-updates {
  background: url("./image/pink.png") no-repeat center center/cover;
  background-attachment: fixed;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}


.updates-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}


.updates-title {
  font-size: 40px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.updates-subtitle {
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}


.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 30px;
}


.update-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.4s ease;
  text-align: left;
}

.update-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}


.update-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}


.update-content {
  padding: 25px;
}

.update-content h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
}

.update-meta {
  display: flex;
  justify-content: space-between;
  color: #777;
  font-size: 15px;
  margin-bottom: 15px;
}

.update-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}


.update-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff9966, #ff5e62);
}


@media (max-width: 768px) {
  .weekly-updates {
    padding: 60px 20px; 
    background-attachment: fixed; 
  }

  .updates-title {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .updates-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .updates-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .update-card img {
    height: 200px;
  }

  .update-content {
    padding: 20px;
  }

  .update-content h3 {
    font-size: 17px;
  }

  .update-content p {
    font-size: 15px;
  }
}


@media (max-width: 480px) {
  .weekly-updates {
    padding: 50px 15px;
    background-attachment: fixed; 
  }

  .updates-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .updates-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .updates-grid {
    grid-template-columns: 1fr; 
    gap: 20px;
  }

  .update-card {
    border-radius: 12px;
  }

  .update-card img {
    height: 180px;
  }

  .update-content {
    padding: 18px;
  }

  .update-content h3 {
    font-size: 16px;
  }

  .update-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .update-meta {
    font-size: 13px;
    flex-direction: column;
    gap: 5px;
  }
}




/* section count */


.section {
  position: relative;
  background: url('./image/aboutback.jpg') no-repeat center center/cover;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 32, 47, 0.7);
  z-index: 1;
}


.boxcontainer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  justify-items: center;
  align-items: center;
}


.boxx {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 25px;
  border-radius: 15px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, back 0.3s ease;
  width: 100%;
  max-width: 250px;
}

.boxx:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}


.boxx h2 {
  font-size: 50px;
  font-weight: 700;
  color: #ffb347;
  margin-bottom: 10px;
}


.boxx p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
}


@media (max-width: 768px) {
  .boxx h2 {
    font-size: 36px;
  }
  .boxx p {
    font-size: 16px;
  }
}

/* section company */


.about-company {
  background: url("./image/pink.png") no-repeat center center/cover;
  background-attachment: fixed;
  padding: 100px 8%;
  font-family: 'Poppins', sans-serif;
}


.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}


.about-content {
  flex: 1;
  min-width: 320px;
}

.about-content h5 {
  color: #ff7f50;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1e2a47;
  margin-bottom: 15px;
}

.about-content h3 {
  font-size: 20px;
  color: #444;
  margin-bottom: 25px;
}

.about-content .highlight {
  color: #ffb347;
  font-size: 32px;
  font-weight: 700;
}


.about-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}


.about-points {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-points li {
  color: #333;
  margin-bottom: 10px;
  font-size: 16px;
}




.about-image {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about-company {
    padding: 80px 6%;
    background-attachment: fixed;
  }
  .about-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .about-content h3 {
    font-size: 18px;
  }

  .about-content .highlight {
    font-size: 28px;
  }

  .about-content p {
    font-size: 15px;
  }

  .about-points li {
    font-size: 15px;
  }

  .about-image img {
    max-width: 400px;
  }
}


@media (max-width: 480px) {
  .about-company {
    padding: 60px 20px;
    background-attachment: fixed; 
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .about-content h5 {
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  .about-content h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .about-content h3 {
    font-size: 17px;
  }

  .about-content .highlight {
    font-size: 24px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-points li {
    font-size: 14px;
  }

  .about-image img {
    max-width: 320px;
  }
}





/* section services */

.services {
  background: linear-gradient(135deg, rgb(13, 13, 46), rgb(9, 9, 36));
  text-align: center;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.services h3 {
  color: #ff6b6b;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.services h2 {
  color: White;
  font-size: 34px;
  margin-bottom: 50px;
  line-height: 40px;
}

.services h2 span {
  color: white;
}


.service-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}


.service-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}


.service-box i {
  font-size: 36px;
  color: #ff6b6b;
  margin-bottom: 15px;
}


.service-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0f172a;
}


.service-box p {
  font-size: 14px;
  line-height: 22px;
  color: #475569;
  margin-bottom: 20px;
  padding: 0 10px;
}


.service-box a {
  display: inline-block;
  text-decoration: none;
  background: #ff6b6b;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: back 0.3s ease;
}

.service-box a:hover {
  background: #ff4d4d;
}


@media (max-width: 768px) {
  .services h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .service-box {
    padding: 25px 15px;
  }
}

/* section grow */


.branding-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1000px;
  margin: 80px auto;
  background: linear-gradient(135deg, #91acea 0%, #b3eff1 100%);
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(15, 98, 254, 0.1);
  overflow: hidden;
  position: relative;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branding-section:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 98, 254, 0.15);
}


.branding-image {
  width: 45%;
  height: 400px;
  background-image: url('./image/onlineab.jpg');
  background-size: cover;
  background-position: center;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  transition: transform 0.4s ease;
}

.branding-section:hover .branding-image {
  transform: scale(1.05);
}


.branding-content {
  width: 55%;
  padding: 60px 70px;
  box-sizing: border-box;
  position: relative;
}

.branding-content h2 {
  color: #0f62fe;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 10px;
}

.branding-content h3 {
  font-size: 30px;
  margin: 0 0 18px;
  color: #071236;
  font-weight: 700;
  line-height: 1.3;
}

.branding-content p {
  font-size: 15px;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 20px;
}


.cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}

.btn {
  background: linear-gradient(135deg, #0f62fe, #2563eb);
  color: #fff;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 5px 15px rgba(15, 98, 254, 0.25);
  transition: all 0.3s ease;
}

.btn:hover {
  background: linear-gradient(135deg, #2563eb, #0f62fe);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(15, 98, 254, 0.3);
}


.phone-box {
  background: #eef3ff;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
  color: #071236;
  box-shadow: inset 0 0 8px rgba(15, 98, 254, 0.08);
}

.phone-box small {
  display: block;
  color: #6b7280;
  font-weight: 500;
  font-size: 12px;
}

.phone-box a {
  color: inherit;
  text-decoration: none;
  font-size: 15px;
}


@media (max-width: 1024px) {
  .branding-section {
    flex-direction: column-reverse;
    width: 90%;
  }

  .branding-content,
  .branding-image {
    width: 100%;
  }

  .branding-image {
    height: 260px;
    clip-path: none;
  }

  .branding-content {
    padding: 30px 25px;
  }
}






/* section footer */

.footer {
  background: linear-gradient(135deg, rgba(2, 25, 79, 0.8), rgba(0, 8, 19, 0.8)),
              url("./image/footer.jpg") no-repeat center center/cover;
  color: white;
  padding: 60px 20px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
}

.footcontainer {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}


.footting img {
  width: 160px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footting p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: white;
}

.social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social a:hover {
  background: rgb(5, 241, 162);
  color: #1e293b;
  transform: scale(1.1);
}


.footlink h4,
.footercol h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
  position: relative;
}


.footlink h4::after,
.footercol h4::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: rgb(5, 241, 162);
  margin-top: 6px;
  border-radius: 2px;
}


.footlink ul,
.footercol ul {
  list-style: none; 
  padding: 0;
  margin: 0;
}


.footlink ul li,
.footercol ul li {
  margin-bottom: 10px;
}


.footlink ul li a,
.footercol ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block; 
}


.footlink ul li a:hover,
.footercol ul li a:hover {
  color: rgb(5, 241, 162);
  /* text-decoration: underline; */
}

.footercol p {
  font-size: 14px;
  margin-bottom: 10px;
  color: white;
}

.footercol p i {
  margin-right: 8px;
  color: rgb(5, 241, 162);
}


.applinks {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.applinks img {
  height: 38px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.applinks img:hover {
  transform: scale(1.08);
}

.footerbottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 16px;
  color: white;
  position: relative;
  left: 390px;
}

.footerbottom span {
  color: rgb(5, 241, 162);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .footerbottom {
    left: 200px; 
    font-size: 15px;
  }
}


@media (max-width: 768px) {
  .footerbottom {
    left: 0; 
    font-size: 14px;
    text-align: center;
  }
}


@media (max-width: 992px) {
  .footcontainer {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  
}

@media (max-width: 600px) {
  .footcontainer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social a {
    margin: 5px;
  }
  .applinks {
    justify-content: center;
  }

  .footlink h4::after,
  .footercol h4::after {
 display: none;
}

  
}