

@import url('https://fonts.googleapis.com/css2?family=Livvic:wght@300;400;500;600&display=swap');
/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
.header {
  
  position: absolute;
  width: 100%;
  z-index: 10;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  color: #fff;
  font-size: 20px;
  width: 170px;
  height: auto;
  font-weight: bold;
}
.logo img {
    height: 55px;
    object-fit: contain;
}
/* ===== NAV ===== */
.menu {
  list-style: none;
  display: flex;
  gap: 24px;
  align-items: center;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.menu a.active {
  color: #1e6fff;
}

.dropdown {
  position: relative;
}

.dropdown span {
  font-size: 12px;
}

/* ===== DROPDOWN ===== */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 240px;
  border-radius: 6px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: none;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: #333;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: #f2f6ff;
  color: #1e6fff;
}

.dropdown:hover .dropdown-menu {
  display: block;
}


/* ===== ABOUT CONTENT ===== */
.about-content {
  padding: 90px 0;
}

.about-flex {
  display: flex;
  gap: 60px;
  align-items: center;
}



.about-image {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  margin: 15px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;                 /* perfect crop */
  object-position: center;           /* center face/content */
  filter: brightness(88%)
          contrast(110%)
          saturate(105%);            /* brightness fix */
}

.about-tag {
  background: #eaf1ff;
  color: #217af0;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 14px;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 18px;
  color: #0b1b35;
}

.about-text p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 14px;
}


.about-images-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Common box */
.image-box {
  position: relative;
}

/* Sizes */
.image-box.small {
  width: 100px;
  height: 100px;
}

.image-box.big {
  width: 300px;
  height: 300px;
}

/* Circle image */
.about-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(92%) contrast(110%) saturate(105%);
}

/* Decorative shapes */
.shape {
  position: absolute;
  background: #cfe1ff;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.6;
}

/* Shape positions */
.shape-top {
  width: 160px;
  height: 160px;
  top: -40px;
  right: 20px;
}

.shape-bottom {
  width: 120px;
  height: 120px;
  bottom: 30px;
  left: -30px;
}

.shape-left {
  width: 100px;
  height: 100px;
  top: 20px;
  left: -30px;
}

.shape-right {
  width: 100px;
  height: 100px;
  bottom: 20px;
  right: -30px;
}

.about-features {
  padding: 60px 0;
  background: #f9fbff;
}

.features-grid {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 60px;
}

.feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feature-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.feature-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #111;
}

.feature-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.process-section {
  text-align: center;
  padding: 70px 0;
  background: #f9fbff;
}

.process-tag {
  display: inline-block;
  background: #e6f0ff;
  color: #1e6fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
}

.process-section h2 {
  font-size: 28px;
  margin-bottom: 50px;
  color: #111;
}

.process-steps {
  display: flex;
  justify-content: center;
  gap: 60px;
}

/* Each step */
.process-item {
  text-align: center;
}

/* Main circle */
.circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px dashed #1e6fff;
  padding: 10px;
  position: relative;
  margin-bottom: 15px;
}

/* Blue dots */
.circle::before,
.circle::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: #1e6fff;
  border-radius: 50%;
}

.circle::before {
  top: 20px;
  left: -10px;
}

.circle::after {
  bottom: 20px;
  right: -10px;
}

/* Image inside */
.circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.process-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}
 @media (max-width: 992px) {
  .process-steps {
    flex-wrap: wrap;
    gap: 40px;
  }
}


/* consultation */
/* SECTION BASE */
.consultation {
  width: 100%;
  font-family: Arial, sans-serif;
}

/* BLUE STRIP */
.consultation-blue {
  background: linear-gradient(90deg, #0b1c3d, #123a8f);
  padding: 70px 0;
  text-align: center;
}

.consult-tag {
  color: #9bb8ff;
  font-size: 12px;
  letter-spacing: 1px;
}

.consultation-blue h2 {
  color: #fff;
  font-size: 32px;
  margin-top: 10px;
}

/* WHITE AREA */
.consultation-white {
  background: #f2f2f2;
  padding: 60px 0;
}

/* CONTENT WRAPPER */
.consultation-box {
  max-width: 1100px;
  margin: auto;
  display: flex;
  background: #fff;
}

/* IMAGE */
.consult-img {
  width: 50%;
  position: relative;
}

.consult-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  background: #1e6fff;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FORM */
.consult-form {
  width: 50%;
  padding: 40px;
}

.consult-form .row {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  padding: 14px;
  background: #eeeeee;
  border: none;
  font-size: 14px;
}

.consult-form textarea {
  height: 120px;
  resize: none;
  margin-bottom: 25px;
}

.consult-form button {
  background: #1e6fff;
  color: #fff;
  border: none;
  padding: 14px 38px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .consultation-box {
    flex-direction: column;
  }

  .consult-img,
  .consult-form {
    width: 100%;
  }

  .consult-form .row {
    flex-direction: column;
  }
}

/* --- footer-----*/
.footer {
  background: url("../images/footer.png") no-repeat center center;
  background-size: cover;
  padding: 60px 0 0;
  font-family: 'Segoe UI', sans-serif;
  color: #2c2c2c;
}

.footer-main {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 18px;
  color: #1f1f1f;
  font-weight: 600;
}

.footer-logo {
  width: 160px;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 24px;
  color: #3a3a3a;
}

/* IT SERVICES LIST */
.footer-links-list {
  list-style: none;
  padding: 0;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  text-decoration: none;
  color: #2c2c2c;
  font-size: 14px;
}

.footer-links-list a:hover {
  color: #1e73be;
}

/* SOCIAL ICONS */
.footer-social {
  margin-top: 20px;
}

.footer-social i {
  font-size: 16px;
  margin-right: 14px;
  color: #1e73be;
  cursor: pointer;
}

/* CONTACT INFO */
.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.contact-item img {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.contact-item span {
  font-size: 14px;
  line-height: 22px;
}

/* NEWSLETTER */
.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #999;
  outline: none;
  font-size: 14px;
}

.newsletter-form button {
  padding: 8px 18px;
  border: 1px solid #999;
  background: transparent;
  cursor: pointer;
}

/* OPENING HOURS */
.footer-contact {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  font-size: 14px;
}

/* BOTTOM FOOTER */
.footer-bottom {
  margin-top: 40px;
  padding: 15px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-size: 13px;
}

.bottom-links a {
  text-decoration: none;
  color: #2c2c2c;
  margin: 0 6px;
}

.bottom-links span {
  color: #1e73be;
}

.footer {
  font-family: 'Livvic', sans-serif;
}

.footer-col p {
  font-size: 14px;
  line-height: 26px;
  color: #4a4a4a;
  text-align: justify;
  letter-spacing: 0.2px;

  /* THIS makes text look neat */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #000;
}

.contact-section {
  background: linear-gradient(135deg, #1d2ed8, #3b82f6);
  padding: 90px 10%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.contact-top {
  margin-bottom: 25px;
}

.contact-top span {
  background: #03228f;
  color: #fff;
  padding: 8px 25px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.contact-heading {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 1100px;
  margin: auto;
}

.form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}

.form-row input,
.form-row select {
  flex: 1;
  padding: 18px 20px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  outline: none;
}

textarea {
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  margin-bottom: 40px;
  resize: none;
  height: 140px;
  outline: none;
}

.submit-wrapper {
  text-align: center;
}

.submit-wrapper button {
  background: linear-gradient(135deg, #4f46e5, #60a5fa);
  color: #fff;
  border: none;
  padding: 14px 45px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-wrapper button:hover {
  opacity: 0.9;
}



.contact-section {
  padding: 100px 0;
  background: linear-gradient(
    to bottom,
    #1e3a8a 0%,
    #1e3a8a 50%,
    #ffffff 50%,
    #ffffff 100%
  );
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header span {
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 14px;
}

.contact-header h2 {
  color: #ffffff;
  font-size: 34px;
  margin-top: 10px;
}

.contact-container {
  width: 100%;
  margin: auto;
  display: flex;
  gap: 40px;
  justify-content: center;
}

.video-box {
  position: relative;
  flex: 1;
}

.video-box img {
  width: 100%;
  border-radius: 10px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #1e3a8a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.play-btn i {
  color: #ffffff;
  font-size: 26px;
}

.contact-forms {
  flex: 1;
  background: #f3efe6;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-forms input,
.contact-forms textarea {
    width: 100%;
    padding:14px;
    margin-bottom: 15px;
  background:#ffffff;   /* white */
  border-radius: 6px;
}

.contact-forms textarea {
  height: 120px;
}

.contact-forms button {
  background: #1e3a8a;
  color: #f3efe6; /*light cream */
  border: none;
  padding: 14px 25px;
  border-radius: 6px;
  cursor: pointer;
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
}

.video-content {
  width: 80%;
  margin: auto;
  position: relative;
}

.video-content iframe {
  width: 100%;
  height: 450px;
}

.close-btn {
  position: absolute;
  right: 0;
  top: -40px;
  color: #ffffff;
  font-size: 30px;
  cursor: pointer;
}

@media(max-width: 992px){
  .contact-container {
    flex-direction: column;
  }
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;   /* 2 columns */
  gap: 20px;
}

/* Make textarea full width */
.contact-form-grid textarea {
  grid-column: span 2;   /* takes both columns */
  height: 150px;
}

/* Make button full width */
.contact-form-grid button {
  grid-column: span 2;
}

/*contact us */

