@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
}

:root {
  --primary: #023770;
  --secondary: #001d3d;
  --accent: #00a8ff;
  --light: #f8fbff;
  --dark: #111827;
  --text: #333333;
  --text-light: #777777;
  --border: #e7e7e7;
}

body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}
   
.landing_page{
  width: 100%;
  min-width: 100%;
  overflow-x: hidden !important;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button,
input {
  outline: 0;
}

button {
  cursor: pointer;
  transition: all 0.3s ease;
}

/* waka waka*/
.primary-btn {
  padding: 15px 30px;
  border-radius: 30px;
  border: 0;
  outline: 0;
  background: linear-gradient(80deg, var(--secondary), var(--primary));
  color: #fff;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 999;
  transition: all 0.3s ease;
}

.primary-btn i{
  color: #fff;
  font-size: 15px;
}

.primary-btn:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.primary-btn::after {
  content: "";
  background: #fff;
  opacity: 0;
  width: 30px;
  height: 80px;
  transform: rotate(-30deg);
  position: absolute;
  top: -20;
  left: -40px;
  transition: 0.3s ease-in-out;
}

.primary-btn:hover::after {
  opacity: 0.4;
  left: 180px;
}


.container {
  max-width: 1600px;
  width: 100%;
  margin: 0px auto;
  padding: 20px;
  z-index: -1;
}

/* Hero Section */
.website_hero {
  width: 100%;
  height: 100%;
  min-height: 800px;
  background: linear-gradient(#fff, #ffffff);
  background-size: cover;
  background-position: center center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  
}

.website_hero section {
  max-width: 1600px;
  width: 100%;
  margin: 0px auto;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 100px;
  position: relative;
  z-index: 9;
  align-items: center;
  padding: 0 20px;
}

.website_hero::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: url("../img/gradient-hero.svg");
  background-size: cover;
  opacity: 0.5;
}

.website_hero_content h5 {
  font-weight: 400;
  color: #292929;
  text-transform: uppercase;
  padding-left: 10px;
  border-left: 3px solid var(--primary);
  margin-bottom: 20px;
}

.website_hero_content h2 {
  font-size: 48px;
  color: #000000;
  font-family: "Raleway", sans-serif;
  line-height: 1.2;
  margin-bottom: 20px;
}

.website_hero_content h2 span {
  background: -webkit-linear-gradient(80deg, #1062bb, #07056e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Raleway", sans-serif;
}

.website_hero_content p {
  font-size: 18px;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.6;
}

.website_hero_content .call_form {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  width: auto;
  padding: 4px;
  border-radius: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.website_hero_content .call_form .input-phone {
  display: inline-flex;
  gap: 5px;
}

.website_hero_content .call_form i {
  font-size: 20px;
  color: #858585;
  padding-left: 5px;
}

.website_hero_content .call_form input {
  font-size: 16px;
  border: 0;
  outline: 0;
  font-size: 16px;
  padding: 0px 10px;
  font-weight: 600;
}

.website_hero_content .call_form button {
  padding: 10px 20px;
  border-radius: 30px;
  border: 0;
  outline: 0;
  background: linear-gradient(80deg, var(--secondary), var(--primary));
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.website_hero_content .call_form button i{
  color: #fff;
  font-size: 15px;
}

.website_hero_content .call_form button:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.website_hero_content .call_form button::after {
  content: "";
  background: #fff;
  opacity: 0;
  width: 30px;
  height: 80px;
  transform: rotate(-30deg);
  position: absolute;
  top: -20;
  left: -40px;
  transition: 0.3s ease-in-out;
}

.website_hero_content .call_form button:hover::after {
  opacity: 0.4;
  left: 180px;
}

.website_hero_content .hero_logos {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 20px;
}

.website_hero_content .hero_logos img {
  height: 60px;
  border-radius: 5px;
  transition: transform 0.3s ease;
  background: #fff;
  padding: 10px;
}

.website_hero_content .hero_logos img:hover {
  transform: translateY(-5px);
}
.website_hero_form form {
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  background: #f8f8f8;
  border: 4px solid #f0f0f0;
  box-shadow: 0px 10px 30px rgba(20, 24, 83, 0.3);
  position: relative;
  transition: all 0.3s ease;
}

.website_hero_form form:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 40px rgba(20, 24, 83, 0.4);
}

.website_hero_form form::after {
  content: "";
  position: absolute;
  top: -70px;
  right: 20px;
  height: 100px;
  width: 150px;
  /* background: url("../img/cheetah.png"); */
  background-repeat: no-repeat;
  background-size: contain;
}

.website_hero_form form h3 {
  font-family: "Raleway", sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--primary);
  text-align: center;
}

.website_hero_form form p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  padding-bottom: 15px;
  border-bottom: 1px dashed #dadada;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  background: #fff;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
}

.input:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 55, 112, 0.1);
}

.input.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.input.success {
  border-color: var(--success);
}

.input input {
  width: 100%;
  border: 0;
  outline: 0;
  font-size: 14px;
  background: transparent;
}

.input i {
  font-size: 18px;
  color: #6d6d6d;
  padding-right: 5px;
  transition: color 0.3s ease;
}

.input.error i {
  color: var(--error);
}

.input.success i {
  color: var(--success);
}

.validation-message {
  display: none;
  font-size: 12px;
  margin-top: 5px;
  padding: 5px 10px;
  border-radius: 6px;
  animation: fadeIn 0.3s ease;
}

.validation-message.error {
  display: block;
  color: var(--error);
  background: rgba(220, 53, 69, 0.1);
  border-left: 3px solid var(--error);
}

.validation-message.success {
  display: block;
  color: var(--success);
  background: rgba(40, 167, 69, 0.1);
  border-left: 3px solid var(--success);
}

.validation-message.warning {
  display: block;
  color: var(--warning);
  background: rgba(255, 193, 7, 0.1);
  border-left: 3px solid var(--warning);
}

.acceptance {
  font-size: 13px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #888;
  margin: 20px 0;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.acceptance.error {
  background: rgba(220, 53, 69, 0.05);
  border: 1px solid rgba(220, 53, 69, 0.2);
}

.acceptance input[type="checkbox"] {
  accent-color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.acceptance label {
  cursor: pointer;
  line-height: 1.4;
}

form button[type="submit"] {
  display: block;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  padding: 15px;
  border-radius: 50px;
  border: 0;
  outline: 0;
  background: linear-gradient(80deg, #000000, var(--secondary));
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

form button[type="submit"]:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

form button[type="submit"]:disabled {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

form button[type="submit"] .loading {
  display: none;
  animation: spin 1s linear infinite;
}

form button[type="submit"].loading .button-text {
  display: none;
}

form button[type="submit"].loading .loading {
  display: inline-block;
}

.call-cta {
  padding-top: 15px;
  border-top: 1px dashed #dadada;
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
  color: var(--text-light);
}

.call-cta a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.call-cta a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 20px;
  animation: fadeIn 0.5s ease;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 24px;
}

.form-success h4 {
  font-size: 20px;
  color: var(--success);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-light);
  margin-bottom: 0;
  border: none;
  padding: 0;
}

/* Phone Input Styling */
.phone-input-container {
  width: 100%;
}

.iti {
  width: 100%;
}

.iti__selected-flag {
  padding: 0 12px;
  border-radius: 8px 0 0 8px;
}

.iti__country-list {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  z-index: 1000;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.shake {
  animation: shake 0.5s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .website_hero_form form {
    padding: 25px 20px;
  }

  .website_hero_form form h3 {
    font-size: 20px;
  }

  .input {
    padding: 10px 12px;
  }
}

/* About Section */
.about_section {
  width: 100%;
  background: #fafafa;
  position: relative;
  padding: 80px 0;
}

.about_section::after {
  content: "";
  width: 400px;
  height: 500px;
  background: url("../img/path.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  right: 0px;
  opacity: 0.4;
}

.about_section .container {
  position: relative;
  z-index: 999;
}

.about_section h1 {
  font-size: 50px;
  font-weight: 900;
  font-family: "Raleway", sans-serif;
  margin-bottom: 20px;
  color: var(--text);
}

.about_section p {
  font-weight: 600;
  font-size: 17px;
  margin-top: 20px;
  color: #4e4e4e;
  line-height: 1.6;
}

.about_section .counter {
  width: 100%;
  display: grid;
  gap: 20px;
  margin: 50px 0px;
  grid-template-columns: repeat(4, 1fr);
}

.about_section .counter .couter-box {
  background: #ffffff;
  border: 3px solid #eeeeee;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about_section .counter .couter-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.about_section .counter .couter-box div {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.about_section .counter .couter-box div h3 {
  font-size: 70px;
  color: var(--primary);
  line-height: 1;
}

.about_section .counter .couter-box div span {
  font-size: 30px;
  color: var(--primary);
}

.about_section .counter .couter-box p {
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
}

.about_section .about_content_section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
  
}

.about_section .about_content_section .about_image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 10px 10px 0px var(--secondary);
  border: 2px solid #e6eeff;
  transition: all 0.3s ease;
  z-index: -1;
}

.about_section .about_content_section .about_image img:hover {
  transform: translateY(-10px);
  box-shadow: 15px 15px 0px var(--secondary);
  z-index: -1 ;
}

.about_section .about_content_section .about_content h2 {
  font-size: 34px;
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  margin-bottom: 30px;
  color: var(--text);
}

.about_section .about_content_section .about_content h3 {
  font-weight: 900;
  font-size: 26px;
  opacity: 0.2;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #a8a8a8;
}

.about_section .about_content_section .about_content h4 {
  text-transform: uppercase;
  margin-top: 5px;
  font-size: 24px;
  color: var(--text);
}

.about_section .about_content_section .about_content p {
  font-size: 14px;
  font-weight: 500;
  margin-top: 0;
  line-height: 1.6;
}

.about_section .about_content_section .about_content .box div {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.about_section .about_content_section .about_content .box {
  margin-bottom: 20px;
  padding: 10px 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.about_section .about_content_section .about_content .box:hover {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transform: translateX(10px);
}

/* User Experience Section */
.ux-section {
  padding: 80px 0;
  background: var(--light);
}

.ux-section .section_title {
  text-align: center;
  margin-bottom: 60px;
}

.ux-section .section_title h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: var(--text);
}

.ux-section .section_title p {
  font-size: 18px;
  color: var(--text-light);
}

.ux-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.ux-step {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.ux-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.ux-step h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text);
}

.ux-step p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* CTA Section */
.cta {
  width: 100%;
}

.cta_section {
  width: 100%;
  padding: 80px 30px;
  border-radius: 20px;
  /* background: url("../img/action_bg.webp"); */
  background: #f8fbff;
  background-size: cover;
  position: relative;
}

.cta_content {
  position: relative;
  z-index: 999;
  text-align: center;
  color: #000000;
  max-width: 1200px;
  margin: 0px auto;
}

.cta_content h2 {
  font-size: 42px;
  font-family: "Raleway", sans-serif;
  margin-bottom: 30px;
}

.cta_content h2 span {
  background: -webkit-linear-gradient(80deg, #03018a, #0060fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Raleway", sans-serif;
}

.cta_content p {
  font-weight: 400;
  color: #000000;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta_content button {
  padding: 15px 60px;
  border-radius: 30px;
  margin: 0px auto;
  border: 0;
  outline: 0;
  background: linear-gradient(80deg, var(--secondary), var(--primary));
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cta_content button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta_content button::after {
  content: "";
  background: #fff;
  opacity: 0;
  width: 30px;
  height: 80px;
  transform: rotate(-30deg);
  position: absolute;
  top: -20;
  left: -20%;
  transition: 0.3s ease-in-out;
}

.cta_content button:hover::after {
  opacity: 0.4;
  left: 120%;
}

/* Reviews Section */
.reviews {
  padding: 80px 0px;
  display: grid;
  grid-template-columns: 300px 1fr;
  width: 100%;
  gap: 30px;
}

.reviews .review_sidebar h2 {
  font-size: 32px;
}

.reviews .review_sidebar img {
  width: 120px;
  margin-bottom: 20px;
}

.reviews .review_sidebar p {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.review_slider {
  width: 100%;
  overflow: hidden;
}

.review_box {
  width: 100%;
  padding: 30px;
  border: 1px solid #e6e6e6;
  border-radius: 15px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
  background: #fff;
  transition: all 0.3s ease;
}

.review_box:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
}

.review_box p {
  font-size: 14px;
  color: #474747;
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

.review_box .review-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.review_box .review-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.review_box .review-user h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.review_box .review-user .stars {
  display: flex;
  align-items: center;
}

.review_box .review-user .stars i {
  color: rgb(255, 174, 0);
  font-size: 16px;
}

/* Services Section */
.services {
  padding: 80px 0px;
}

.services .head {
  text-align: center;
  margin-bottom: 50px;
}

.services .head h2 {
  font-size: 48px;
  margin-bottom: 15px;
  color: var(--text);
}

.services .head p {
  font-size: 18px;
  color: var(--text-light);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service__card {
  width: 100%;
  padding: 30px 20px;
  text-align: center;
  background: #eff4ff;
  border-radius: 15px;
  border: 1px solid #dfdfff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service__card:hover::before {
  transform: scaleX(1);
}

.service__card img {
  width: 80px;
  border-radius: 10px;
  border: 1px solid #dfdfff;
  padding: 10px;
  background: #fff;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service__card:hover img {
  transform: scale(1.1);
}

.service__card h3 {
  margin: 10px 0px;
  font-size: 20px;
  color: var(--text);
}

.service__card p {
  font-size: 14px;
  font-weight: 500;
  color: #455664;
  line-height: 1.6;
}

/* Why Section */
.why_section {
  background: #f8fbff;
  padding: 80px 0;
}

.why_section .container {
  padding: 0;
}

.section_title {
  text-align: center;
  margin-bottom: 60px;
}

.section_title h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: var(--text);
}

.section_title h2 span {
  color: var(--primary);
}

.section_title p {
  font-size: 18px;
  color: var(--text-light);
}

.why_grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

.why_content p {
  font-size: 18px;
  font-weight: 600;
  line-height: 32px;
  margin-top: 20px;
  color: var(--text);
}

.why_content button {
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 18px;
  border: 0;
  outline: 0;
  background: linear-gradient(80deg, var(--secondary), var(--primary));
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  margin-top: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.why_content button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.why_content button::after {
  content: "";
  background: #fff;
  opacity: 0;
  width: 30px;
  height: 80px;
  transform: rotate(-30deg);
  position: absolute;
  top: -20;
  left: -20%;
  transition: 0.5s ease-in-out;
}

.why_content button:hover::after {
  opacity: 0.4;
  left: 130%;
}

.why_image {
  display: flex;
  justify-content: center;
}

.why_image img {
  border-radius: 20px;
  box-shadow: 10px 10px 0px var(--secondary);
  transition: all 0.3s ease;
}

.why_image img:hover {
  transform: translateY(-10px);
  box-shadow: 15px 15px 0px var(--secondary);
}

.why_card_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  row-gap: 40px;
  margin-top: 60px;
}

.why_card_grid .why_card {
  background: #fff;
  border: 5px solid var(--secondary);
  border-radius: 40px;
  padding: 30px 20px;
  position: relative;
  text-align: center;
  margin-top: 40px;
  transition: all 0.3s ease;
}

.why_card_grid .why_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why_card_grid .why_card .icon {
  width: 90px;
  height: 90px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
  margin-top: -60px;
  margin-bottom: 20px;
  border: 5px solid var(--secondary);
  padding: 5px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.why_card_grid .why_card:hover .icon {
  transform: scale(1.1);
  background: var(--light);
}

.why_card_grid .why_card .icon img {
  width: 70px;
}

.why_card_grid .why_card h3 {
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--text);
}

.why_card_grid .why_card p {
  font-size: 14px;
  font-weight: 600;
  color: #2c2a2a;
  line-height: 1.6;
}

/* Certification */

.certification-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 30px;
}

.certification-row h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 30px;
}

.certification-row p {
  margin-top: 15px;
  font-weight: 600;
}

.certification-row ul {
  list-style: none;
  margin-top: 20px;
  margin-left: 30px;
  font-weight: 600;
  font-size: 14px;
}

.certification-row ul li {
  margin-bottom: 8px;
}

.certification-row ul li i {
  color: var(--primary);
}

.certification-row img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
}

.copyright p{
  color: #fff;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 20px;
  }

  .why_section {
    padding: 80px 20px;
    padding-top: 150px;
  }

  .website_hero section {
    gap: 50px;
  }

  .about_section .about_content_section {
    gap: 40px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why_card_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ux-process {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .website_hero section {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-bottom: 40px;
  }

  .website_hero{
    padding-top: 150px;
  }

  .website_hero_form {
    max-width: 500px;
    margin: 0 auto;
  }

  .reviews {
    grid-template-columns: 1fr;
  }

  .review_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about_section .about_content_section {
    grid-template-columns: 1fr;
  }

  .about_section .counter {
    grid-template-columns: repeat(2, 1fr);
  }

  .why_grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 768px) {
  .website_hero_content h2 {
    font-size: 36px;
  }

  .about_section h1 {
    font-size: 36px;
  }

  .services .head h2 {
    font-size: 36px;
  }

  .section_title h2 {
    font-size: 32px;
  }

  .review_grid {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .why_card_grid {
    grid-template-columns: 1fr;
  }

  .ux-process {
    grid-template-columns: 1fr;
  }

  .about_section .counter {
    display: none;
  }

  .certification-row.reverse{
    flex-direction: column;
    margin-top: 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
  .certification-row {
    flex-direction: column-reverse;
  }
}

@media (max-width: 576px) {
  .website_hero_content .call_form {
    flex-direction: column;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    gap: 20px;
  }

  .website_hero_content .call_form .input-phone {
    width: 100%;
    display: flex;
    align-items: center;
  }

  .website_hero_content .call_form input {
    width: 100%;
    /* text-align: center; */
    padding: 10px;
  }

  .website_hero_content .call_form button {
    width: 100%;
    justify-content: center;
  }

  .cta_content h2 {
    font-size: 32px;
  }
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #e6f0ff 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;
  color: var(--text);
  margin-bottom: 15px;
  font-weight: 800;
}

.section-title p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info */
.contact-info {
  padding: 40px 0;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 700;
}

.info-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 5px;
}

.info-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: var(--accent);
}

.contact-section iframe{
  width: 100%;
  border-radius: 20px;
}

/* Contact Form */
.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.contact-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h3 {
  font-size: 28px;
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 700;
}

.form-header p {
  color: var(--text-light);
  font-size: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}

.form-label .required {
  color: var(--error);
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 55, 112, 0.1);
}

.form-control.error {
  border-color: var(--error);
}

.form-control.success {
  border-color: var(--success);
}

/* Phone Input Styling */
.phone-input-container {
  position: relative;
}

.iti {
  width: 100%;
}

.iti__selected-flag {
  padding: 0 15px;
  border-radius: 12px 0 0 12px;
}

.iti__country-list {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
}

/* Select Styling */
.custom-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  padding-right: 45px;
}

/* Textarea Styling */
textarea.form-control {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

/* Validation Messages */
.validation-message {
  display: none;
  font-size: 12px;
  margin-top: 5px;
  padding: 5px 10px;
  border-radius: 6px;
}

.validation-message.error {
  display: block;
  color: var(--error);
  background: rgba(220, 53, 69, 0.1);
}

.validation-message.success {
  display: block;
  color: var(--success);
  background: rgba(40, 167, 69, 0.1);
}

/* Submit Button */
.submit-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(2, 55, 112, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.submit-btn .loading {
  display: none;
  animation: spin 1s linear infinite;
}

.submit-btn.loading .button-text {
  display: none;
}

.submit-btn.loading .loading {
  display: inline-block;
}

/* Success Message */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 36px;
}

.form-success h3 {
  font-size: 24px;
  color: var(--success);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Animations */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-out;
}




/* footer{
  width: 100%;
  padding-top: 30px;
  background: url('../img/footer-bg');
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-top: -60px;
  padding-top: 140px;
}


.footer-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  color: #fff;
}

footer h3{
  font-size: 22px;
}

.site_logo{
  margin-bottom: 20px;
}

.site_logo img{
  height: 60px;
}

.site_logo p{
  font-size: 14px;
  color: #888;
  margin-top: 5px;
}

footer .social{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

footer .social a{
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 6px;
  border-radius: 50px;
  color: #001d3d;
  border: 1px solid #000;
  transition: .3s ease-in-out;
}

footer .social a:hover{
  color: #fff;
  background: transparent;
  border-color: #fff;
}

footer .location {
  font-size: 15px;
  margin: 15px 0px;
  line-height: 24px;
}

footer .location img{
  width: 30px;
  margin-bottom: -10px;
}

footer .contact{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}

footer .contact:hover{
  text-decoration: underline;
}

.footer-col ul{
  margin-top: 20px;
}

.footer-col ul li{
  list-style: none;
}

.footer-col ul li a{
  padding: 5px 0px;
  display: block;
}

.copyright{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #999;
}

.copyright ul{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
}

.copyright ul li a{
  font-size: 16px;
}

.copyright p{
  color: #fff;
}
.copyright span{
  font-size: 12px;
}


.copyright ul li a:hover{
  color: #fff;
} */

/* Responsive Design */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    padding: 0;
  }

  .section-title h2 {
    font-size: 36px;
  }

  /* footer{
    background-size: cover;
    padding-top: 30px;
  }
  
.footer-grid{
  grid-template-columns: 1fr;
}

.copyright{
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 10px;
}

.copyright ul{
  flex-wrap: wrap;
}

.copyright ul li a{
  font-size: 14px;
} */



}

@media (max-width: 768px) {

  .counter{
    display: none;
  }

  .contact-form-container {
    padding: 30px 25px;
    width: 100%;
  }

  .info-item {
    padding: 20px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .form-header h3 {
    font-size: 24px;
  }

  .info-item{
    flex-direction: column;
  }

}

@media (max-width: 576px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-form-container {
    padding: 25px 20px;
    width: 100%;
  }

  .form-control {
    padding: 12px 15px;
  }

  .submit-btn {
    padding: 15px 30px;
    font-size: 16px;
  }
}
