﻿/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}


.top-bar {
      background-color: #6fcf97;
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .top-links, .social-icons {
      display: flex;
      gap: 15px;
      align-items: center;
      font-size: 14px;
      color: white;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      flex-wrap: wrap;
    }

    .logo {
      font-size: 20px;
      font-weight: bold;
    }

    .logo span:first-child {
      color: #f05a28;
    }

    .logo span:last-child {
      color: #f8f005ff;
    }

    .contact-info {
      display: flex;
      gap: 30px;
      font-size: 14px;
      text-align: center;
    }

    .contact-info div span {
      display: block;
      color: #fff0a2;
    }

    @media (max-width: 768px) {
      .contact-info {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 10px;
      }

      .navbar {
        flex-direction: column;
        align-items: flex-start;
      }

      .top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }
    }



/* top right menu start */

.top-right-menu {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      background: #f8f9fa;
      padding: 10px 20px;
      border-bottom: 1px solid #ddd;
      position: relative;
    }

    .title h1{
      color:Blue;
    }
    /* 🔹 Menu Links */
    .menu-links {
      display: flex;
      gap: 15px;
    }
    .menu-links a {
      text-decoration: none;
      color: #0073e6;
      font-weight: 500;
      font-size: 14px;
    }
    .menu-links a:hover {
      color: #005bb5;
      text-decoration: underline;
    }

    /* 🔹 Hamburger Button */
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 22px;
      cursor: pointer;
      color: #0073e6;
      margin-left: 10px;
    }

    /* 🔹 Responsive */
    @media (max-width: 500px) {
      .menu-links {
        display: none;
        flex-direction: row;
        gap: 10px;
        background: #f8f9fa;
        position: absolute;
        top: -7px;

     right: 47px;
    padding: 7px;
    border: 1px solid #ddd;
    border-radius: 6px;


      }
      .menu-links.show {
        display: flex;
      }
      .menu-toggle {
        display: block;
      }
    }



/* 🔹 Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #13113eff;
  
  padding: 15px 20px;
  color: #fff;
}
.nav-brand {
  font-size: 20px;
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px;
}
.nav-links li a:hover {
  text-decoration: underline;
  background:orange;
  color: #fff;
  border-radius: 10px;
  transition: all ease-in .2s;
  

}

/* 🔹 Hamburger Button (hidden on desktop) */
.nav-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    /* position: absolute; */
    /* top: 113px; */
    margin-bottom: 7%;
    bottom: 60%;
    right: 5px;
    background: #0073e6;
    width: 200px;
    padding: 39px;
    border-radius: 76px 0 107px 6px;
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}

/* Popup Overlay */
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    /* Popup Box */
    .popup-content {
      background: #fff;
      padding: 20px;
      width: 90%;
      max-width: 500px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      animation: fadeIn 0.3s ease-in-out;
    }

    /* Heading */
    .popup-content h2 {
      margin-top: 0;
      font-size: 1.5rem;
      color: #333;
    }

    /* Paragraph */
    .popup-content p {
      font-size: 1rem;
      color: #555;
      margin: 10px 0;
      line-height: 1.4;
    }

    /* Links */
    .popup-content a {
      color: #007bff;
      text-decoration: none;
    }
    .popup-content a:hover {
      text-decoration: underline;
    }

    /* Close Button */
    .close-btn {
      margin-top: 15px;
      padding: 10px 20px;
      font-size: 1rem;
      border: none;
      border-radius: 5px;
      background: #007bff;
      color: #fff;
      cursor: pointer;
      transition: 0.3s;
    }
    .close-btn:hover {
      background: #0056b3;
    }

    /* Animation */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: scale(0.9);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* Mobile Responsive */
    @media (max-width: 480px) {
      .popup-content {
        width: 95%;
        padding: 15px;
      }
      .popup-content h2 {
        font-size: 1.3rem;
      }
      .popup-content p {
        font-size: 0.9rem;
      }
      .close-btn {
        width: 100%;
      }
    }


    /* top header start  */

    /* Header container */
    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 30px;
      flex-wrap: wrap;
      background: azure;
    }
    .left-section {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    .logo {
      width: 60px;
      height: auto;
    }
    .title {
      display: flex;
      flex-direction: column;
    }
    .title h1 {
      font-size: 20px;
      margin: 0;
      font-weight: bold;
    }
    .title p {
      margin: 0;
      font-size: 14px;
      color: #555;
    }
    .cta-btn {
      background: black;
      color: white;
      padding: 8px 15px;
      border: none;
      border-radius: 4px;
      font-weight: bold;
      cursor: pointer;
    }
    .right-section {
      display: flex;
      gap: 10px;
      margin-top: 10px;


    }



    /* Social icons */
    .social-links {
      display: flex;
      gap: 12px;
    }
    .social-links a img {
      width: 28px;
      height: 28px;
      transition: transform 0.2s;
    }
    .social-links a img:hover {
      transform: scale(1.2);
    }


    .store-btn {
      height: 40px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .left-section {
        flex-direction: column;
        text-align: center;
      }
      .social-links {
        margin: 15px 0;
      }
      .right-section {
        margin-top: 15px;
      }
    }

    /* slider start  */
.cover-slider {
  position: relative;
  width: 100%;
  height: 550px; /* adjust as you prefer */
  overflow: hidden;
}

.cover-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: contain; /* change to cover if you prefer full-width crop look */
  background-repeat: no-repeat;
  background-position: center center;
  transition: opacity 1s ease-in-out;
  opacity: 0;
}

.cover-slider .slide.active {
  opacity: 1;
}

.cover-slider .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
}

.cover-slider .arrow.left {
  left: 15px;
}

.cover-slider .arrow.right {
  right: 15px;
}




  /* Container for the moving text, which acts as a window */
.moving-line {
    width: 100%;
    overflow: hidden; /* Hides content that moves past the container's edges */
    white-space: nowrap; /* Prevents text from wrapping */
    background-color: #f0f0f0; /* Light grey background */
    padding: 10px;
    margin-top: 20px;
    border: 1px solid #ccc; /* A subtle border */
}

/* The element that will be animated */
.moving-text {
    display: inline-block; /* Essential for animation */
    padding-left: 100%; /* Starts the text off-screen */
    animation: marquee 15s linear infinite; /* Applies the animation */
}

/* The keyframe animation definition */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}
 
/* Main container for the latest cases box */
.content-section {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.latest-cases-box, 
.important-links-box {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
    padding: 15px;
}

.latest-cases-box h3, 
.important-links-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
    color: #222;
}

.important-links-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.important-links-box ul li {
    margin-bottom: 10px;
}

.important-links-box ul li a {
    text-decoration: none;
    color: #0d3b66;
    font-weight: 500;
    transition: color 0.3s;
}

.important-links-box ul li a:hover {
    color: #ff9800;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .content-section {
    flex-direction: column;
  }
}


/* The list container that makes scrolling possible */
.cases-list {
    list-style-type: none; /* Removes bullets */
    padding: 0;
    margin: 0;
    height: 250px; /* This sets the fixed height of the scrollable area */
    overflow-y: scroll; /* This is the key property for vertical scrolling */
}

/* Style for each list item */
.cases-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cases-list li:last-child {
    border-bottom: none; /* Removes the border from the last item */
}

/* Style for the links inside the list */
.cases-list li a {
    text-decoration: none;
    color: #333;
    display: block;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.cases-list li a:hover {
    color: #007bff; /* Changes color on hover */
}

/* testimonial start  */


@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

testimonials {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  background-image: radial-gradient(
      at 40% 20%,
      rgb(255, 184, 122) 0px,
      transparent 50%
    ),
    radial-gradient(at 80% 0%, rgb(31, 221, 255) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgb(255, 219, 222) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgb(255, 133, 173) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgb(255, 181, 138) 0px, transparent 50%),
    radial-gradient(at 80% 100%, rgb(107, 102, 255) 0px, transparent 50%),
    radial-gradient(at 0% 0%, rgb(255, 133, 167) 0px, transparent 50%);
  background-repeat: no-repeat;
}

main {
  width: 800px;
}

main h1 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: #fff;
  margin-bottom: 70px;
}

.slide-row {
  display: flex;
  width: 3200px;
  transition: 0.5s;
}

.slide-col {
  position: relative;
  width: 800px;
  height: 400px;
}

.hero {
  position: absolute;
  top: 0;
  right: 67px;
  height: 100%;
}

.hero img {
  height: 100%;
  border-radius: 10px;
  width: 320px;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 270px;
  color: #4d4352;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4.5px);
  -webkit-backdrop-filter: blur(4.5px);
  border-radius: 10px;
  padding: 45px;
  z-index: 2;
  user-select: none;
}

.content p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
}

.content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 35px;
  color: #4d4352;
}

.indicator {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.indicator .btn {
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 4px;
  border-radius: 15px;
  background: #fff;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.btn.active {
  width: 30px;
}

.slider {
  width: 100%;
  overflow: hidden;
}

.logo {
  /* position: fixed; */
  right: -20px;
  bottom: -30px;
  z-index: 10;
}

.logo img {
  width: 120px;
}

@media (max-width: 890px) {
  .logo {
  right: -10px;
  bottom: -20px;
}
  
 .logo img {
  width: 80px;
  }
}

@media (max-width: 850px) {
  main {
    width: 500px;
  }

  .slide-row {
    width: 2000px;
  }

  .slide-col {
    width: 500px;
    height: 250px;
  }

  .hero img {
    width: 200px;
  }

  .content {
    width: 320px;
    height: 200px;
    padding: 20px;
  }

  .content p {
    font-size: 0.9rem;
  }

  .content h2 {
    font-size: 1.2rem;
    margin-top: 20px;
  }
}

@media (max-width: 550px) {
  main {
    width: 300px;
  }

  .slide-row {
    width: 1200px;
  }

  .slide-col {
    width: 500px;
    height: 300px;
  }

  .hero {
    top: 65%;
    height: 100px;
    z-index: 5;
  }

  .hero img {
    width: 100px;
  }

  .content {
    width: 300px;
  }
}



/* 🔹 Info Boxes */
.info-boxes {
  max-width: 700px;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 20px;
  float: left;
}
.important-box, .updates-box {
  flex: 1;
  min-width: 300px;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.important-box {
  border: 1px solid #ffbe76;
  background-color: #ffe5b4;
  color: #6d4b00;
}
.updates-box {
  border: 1px solid #a3e635;
  background-color: #ecfccb;
  color: #4d7c0f;
}
.updates-box ul {
  list-style: none;
  margin-top: 10px;
}
.updates-box li {
  margin-bottom: 8px;
}


/* bloggs pages start  */


.blog-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
width: calc(100% / 2 - 30px);
margin: 15px;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px; /* Fixed height */
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 20px;
}

.blog-date {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.blog-excerpt {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
}

.read-more-btn {
  text-decoration: none;
  display: inline-block;
  background-color: #007BFF;
  color: #fff;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s;
}

.read-more-btn:hover {
  background-color: #0056b3;
}

main.blog-listing {
    padding: 2em;
    max-width: 1200px;
    margin: auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}


@import url(https://fonts.googleapis.com/css?family=Oswald:300,400,700);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900,200italic,300italic,400italic,600italic,700italic,900italic);

/* Override UGG site */
#main {width: 100%; padding:0;}
.content-asset p {margin:0 auto;}
.breadcrumb {display:none;}

/* Helpers */
/**************************/
.margin-top-10 {padding-top:10px;}
.margin-bot-10 {padding-bottom:10px;}

/* Typography */
/**************************/
#parallax-world-of-ugg h1 

{
  font-family:'Oswald',
   sans-serif; font-size:24px; 
   font-weight:400; text-transform: uppercase;
    color:black; 
    padding:0;
     margin:0;
}


#parallax-world-of-ugg h2 


{
  font-family:'Oswald', 
  sans-serif; font-size:70px; 
  letter-spacing:10px; 
  text-align:center; 
  color:white; 
  font-weight:400; 
  text-transform:uppercase; 
  z-index:10; 
  opacity:.9;
  margin-bottom: -12rem
}


#parallax-world-of-ugg h3 

{
  font-family:'Oswald', 
  sans-serif; font-size:14px; 
  line-height:0; font-weight:400; 
  letter-spacing:8px; 
  text-transform: uppercase; 
  color:black;
}


#parallax-world-of-ugg p 

{
  font-family:'Source Sans Pro', 
  sans-serif; 
  font-weight:400; 
  font-size:14px; 
  line-height:24px;
}

.first-character 
{
  font-weight:400; 
  float: left; 
  font-size: 84px; 
  line-height: 64px; 
  padding-top: 4px; 
  padding-right: 8px; 
  padding-left: 3px; 
  font-family: 'Source Sans Pro', 
  sans-serif;
}

.sc {color: #3b8595;}
.ny {color: #3d3c3a;}
.atw {color: #c48660;}

/* Section - Title */
/**************************/
#parallax-world-of-ugg .title 

{
  background: white; 
  padding: 60px; 
  margin:0 auto; 
  text-align:center;
}


#parallax-world-of-ugg .title h1 

{
  font-size:35px; 
  letter-spacing:8px;
}

/* Section - Block */
/**************************/
#parallax-world-of-ugg .block

{
  background: white; 
  padding: 60px; 
  width:820px; 
  margin:0 auto; 
  text-align:justify;
}


#parallax-world-of-ugg .block-gray 
{
  background: #f2f2f2;
  padding: 60px;
}


#parallax-world-of-ugg .section-overlay-mask 
{
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background-color: black; 
  opacity: 0.70;
}

/* Section - Parallax */
/**************************/
/* #parallax-world-of-ugg .parallax-one {padding-top: 200px; padding-bottom: 200px; overflow: hidden; position: relative; width: 100%; background-image: url(https://img.freepik.com/premium-photo/american-court_835692-172.jpg?semt=ais_hybrid&w=740&q=80); background-attachment: fixed; background-size: cover; -moz-background-size: cover; -webkit-background-size: cover; background-repeat: no-repeat; background-position: top center;} */


#parallax-world-of-ugg .parallax-two 
{
  padding-top: 200px; 
  padding-bottom: 200px; 
  overflow: hidden; 
  position: relative; 
  width: 100%; 
  background-image: url("css images/supreme court.jpg"); 
  background-attachment: fixed; 
  background-size: cover; 
  -moz-background-size: cover; 
  -webkit-background-size: cover; 
  background-repeat: no-repeat; 
  background-position: center center;
}



#parallax-world-of-ugg .parallax-three 
{
  padding-top: 200px; 
  padding-bottom: 200px; 
  overflow: hidden; 
  position: relative; 
  width: 100%; 
background-image: url("css images/gwalior high court.jpg"); 
  background-attachment: fixed; 
  background-size: cover; 
  -moz-background-size: cover; 
  -webkit-background-size: cover; 
  background-repeat: no-repeat; 
  background-position: center center;
}

/* Extras */
/**************************/
#parallax-world-of-ugg .line-break 
{
  border-bottom:1px solid black; 
  width: 150px; 
  margin:0 auto;
}

/* Media Queries */
/**************************/
@media screen and (max-width: 959px) and (min-width: 768px) {
  #parallax-world-of-ugg .block {
    padding: 40px;
     width:620px;
    
    }
}
@media screen and (max-width: 767px) {
  #parallax-world-of-ugg .block {padding: 30px;
     width:420px;
  }
  #parallax-world-of-ugg h2 {font-size:30px;}
  #parallax-world-of-ugg .block {padding: 30px;}
  #parallax-world-of-ugg .parallax-one, #parallax-world-of-ugg .parallax-two, #parallax-world-of-ugg .parallax-three 
  {
    padding-top:100px; 
    /* padding-bottom:100px; */
  }
  
  .blog-card {
width: calc(100% / 1 - 30px);
}

}
@media screen and (max-width: 479px) {
  #parallax-world-of-ugg .block 
  {
    padding: 30px 15px;
     width:290px;
  }
}



/* PARALLAX CLOSED  */


.testimonial_section {
  display: block;
  overflow: hidden;
}
.testimonial_section:after {
  display: block;
  clear: both;
  content: "";
}
.testimonial_section .about_content {
  background-color: #020d26;
  padding-top: 77px;
  padding-right: 210px;
  padding-bottom: 62px;
  position: relative;
}
.testimonial_section .about_content .background_layer {
  background-color: #020d26;
  width: auto;
  margin-left: -200px;
  right: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.testimonial_section .about_content .layer_content {
  position: relative;
  z-index: 9;
  height: 100%;
}
.testimonial_section .about_content .layer_content .section_title {
  margin-bottom: 24px;
  position: relative;
}
.testimonial_section .about_content .layer_content .section_title:after {
  display: block;
  clear: both;
  content: "";
}
.testimonial_section .about_content .layer_content .section_title h5 {
  color: #fff;
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  color: #818a8f;
  margin-top: -5px;
  margin-bottom: 6px;
}
.testimonial_section .about_content .layer_content .section_title h2 {
  font-family: "Titillium Web";
  font-weight: 300;
  font-size: 45px;
  line-height: 50px;
  padding-bottom: 51px;
  margin-bottom: 0px;
  color: #fff;
}
.testimonial_section .about_content .layer_content .section_title h2 strong {
  font-weight: 600 !important;
  width: 100%;
  display: block;
}
.testimonial_section .about_content .layer_content .section_title .heading_line {
  position: relative;
}
.testimonial_section .about_content .layer_content .section_title .heading_line span {
  transition: all 0.5s ease-in-out 0s;
  position: relative;
}
.testimonial_section .about_content .layer_content .section_title .heading_line span:after {
  content: "";
  right: auto;
  left: 69px;
  position: absolute;
  bottom: 28px;
  width: 17px;
  margin-left: 0;
  border-bottom-width: 3px;
  border-bottom-color: #cacaca;
  border-bottom-style: solid;
}
.testimonial_section .about_content .layer_content .section_title .heading_line:after {
  content: "";
  left: 1%;
  margin-left: 0;
  position: absolute;
  bottom: 28px;
  width: 59px;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #ff5e14;
}
.testimonial_section .about_content .layer_content .section_title p {
  color: #fff;
  margin: 0 0 15px;
}
.testimonial_section .about_content .layer_content a {
  color: #fff;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.testimonial_section .about_content .layer_content a i {
  font-size: 18px;
  vertical-align: middle;
}
.testimonial_section .about_content .layer_content a:hover {
  color: #ff5e14;
}
.testimonial_section .testimonial_box {
  margin-top: 60px !important;
  position: relative;
}
.testimonial_section .testimonial_box .testimonial_container {
  background-color: #ff5e14;
  margin-left: -170px !important;
  position: relative;
}
.testimonial_section .testimonial_box .testimonial_container .background_layer {
  background-color: #ff5e14;
  width: auto;
  margin-right: -200px;
  right: 0;
  background-image: url(../images/map.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content {
  position: relative;
  z-index: 9;
  height: 100%;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel {
  display: block;
  position: relative;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials {
  margin: 10px 0 10px 0;
  padding: 62px 0px 72px 50px;
  position: relative;
  text-align: center;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.13);
  margin-left: 150px;
  margin-top: 69px;
  padding: 45px 40px 45px 40px;
  z-index: 1;
  position: relative;
  background-color: #fff;
  transition: all 0.5s ease-in-out 0s;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption {
  margin-bottom: 15px;
  position: relative;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption:after {
  content: "";
  width: 30px;
  display: block;
  height: 2px;
  text-align: center;
  left: 46%;
  margin-top: 6px;
  background-color: #ff5e14;
  position: absolute;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption h6 {
  padding-top: 0;
  margin-bottom: -5px;
  font-size: 19px;
  font-weight: 600;
  line-height: 24px;
  color: #020d26;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption span {
  font-size: 12px;
  color: #9f9f9f;
  margin: 0;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content p {
  padding: 0;
  margin: 0;
  padding-top: 10px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #5d6576;
  font-style: italic;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img {
  border: none;
  position: absolute;
  top: 0;
  left: 55px;
  top: 80px;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img img {
  border: 5px solid #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  width: 35%;
}
.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev {
  position: absolute;
  top: 165px;
  right: 42px;
  border-radius: 0;
  background: #ff5e14;
  display: block;
  outline: 0;
  width: 34px;
  line-height: 34px;
  height: 34px;
  color: #fff;
  font-size: 23px;
  margin-top: -20px;
  transition: all 0.3s ease-in-out;
}
.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev:hover {
  background: #020d26;
}
.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next {
  position: absolute;
  top: 165px;
  right: 5px;
  border-radius: 0;
  display: block;
  background: #ff5e14;
  outline: 0;
  width: 34px;
  text-align: center;
  line-height: 34px;
  height: 34px;
  color: #fff;
  font-size: 23px;
  margin-top: -20px;
  transition: all 0.3s ease-in-out;
}
.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next:hover {
  background: #020d26;
}

@media all and (max-width: 991px) {
  .testimonial_section .about_content {
    padding-right: 15px !important;
  }
  .testimonial_section .about_content .background_layer {
    width: 200% !important;
  }
  .testimonial_section .testimonial_box {
    margin-top: 0 !important;
  }
  .testimonial_section .testimonial_box .background_layer {
    width: 200% !important;
    margin-left: -200px;
  }
  .testimonial_section .testimonial_box .about_content {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-top: 28% !important;
  }
  .testimonial_section .testimonial_box .testimonial_container {
    margin-left: -15px !important;
  }
  .testimonial_section .testimonial_box .testimonial_container .testimonials {
    margin: 0px 0 20px 0;
  }
  .testimonial_section .testimonial_box .testimonial_container .testimonials .testimonial_content {
    margin-left: -36px !important;
  }
  .testimonial_section .testimonial_box .testimonial_container .testimonials .images_box {
    display: none;
  }
}


/* footer start  */

footer {
      background: #111;
      color: #fff;
      padding: 50px 20px;
    }
    .footer-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1200px;
      margin: auto;
    }
    .footer-col h3 {
      margin-bottom: 15px;
      font-size: 18px;
      border-bottom: 2px solid #444;
      padding-bottom: 5px;
    }
    .footer-col p,
    .footer-col a {
      font-size: 14px;
      color: #bbb;
      text-decoration: none;
      line-height: 1.8;
      display: block;
    }
    .footer-col a:hover {
      color: #fff;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .footer-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 600px) {
      .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }

    .copyright {
      text-align: center;
      margin-top: 30px;
      font-size: 14px;
      color: #777;
    }

    /* about pages start hua hai  */

    
    main {
      padding: 2em;
      max-width: 1200px;
      margin: auto;
    }
    section {
      margin-bottom: 3em;
    }
    h1, h2, h3 {
      /* color: #111; */
    }
    h1 {
      font-size: 2em;
    }
    p {
      font-size: 1em;
      color: #444;
    }
    /* About Header */
    .about-header {
      text-align: center;
      margin-bottom: 3em;
    }
    .about-header p {
      font-size: 1.1em;
      color: #666;
    }
    /* Founder Section */
    .about-founder {
      display: flex;
      align-items: flex-start;
      gap: 2em;
      flex-wrap: wrap;
      justify-content: center;
    }
    .founder-info {
      max-width: 800px;
      text-align: center;
    }
    .founder-info img {
      width: 200px;
      border-radius: 10px;
      margin-bottom: 1em;
    }
    /* Vision Section */
    .vision {
      flex: 1;
      min-width: 280px;
    }
    /* Team Section */
    .team {
      text-align: center;
    }
    .team-members {
      display: flex;
      justify-content: center;
      gap: 2em;
      flex-wrap: wrap;
      margin-top: 2em;
    }
    .team-member {
      text-align: center;
      max-width: 200px;
    }
    .team-member img {
      width: 150px;
      height: 150px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 0.5em;
      transition: transform 0.3s;
    }
    .team-member img:hover {
      transform: scale(1.1);
    }
    /* Fade In Animation */
    .fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
    /* Responsive */
    @media (max-width: 768px) {
      .about-founder {
        flex-direction: column;
        text-align: center;
      }
      .vision {
        text-align: center;
      }
    }


    /* ragistration page css */

    
    .container {
      max-width: 900px;
      margin: auto;
      padding: 2em;
    }
    .ticks h2 {
      color: #111;
      text-align: center;
      margin-bottom: 0.5em;
    }
    .ticks p {
      text-align: center;
      font-size: 1.1em;
      margin-bottom: 2em;
      color: #555;
    }
    .ticks h3 {
      margin-top: 1em;
      color: #222;
    }
    .ticks ul {
      list-style: none;
      padding: 0;
      pointer: cursor;
    }
    .ticks ul li {
      font-size: 1.05em;
      margin: 0.6em 0;
      padding-left: 30px;
      position: relative;
      color: #444;
      transition: all 0.3s ease;
      pointer: cursor; /* Animation */
    }
    .ticks ul li::before {
      content: "✔"; /* Tick icon */
      position: absolute;
      left: 0;
      color: green;
      font-weight: bold;
      transition: color 0.3s ease;
      pointer: cursor;
    }
    .ticks ul li:hover {
      transform: translateX(8px); /* Slide right */
      color: #0066cc;
      pointer: cursor;  /* Text color change */
    }
    .ticks ul li:hover::before {
      color: #0066cc;
      pointer: cursor; /* Tick color change */
    }
    .ticks a {
      color: #0066cc;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
      
    }
    .ticks a:hover {
      text-decoration: underline;
      color: #004080;
    }
    /* Responsive */
    @media (max-width: 600px) {
      .container {
        padding: 1em;
      }
      .ticks h2 {
        font-size: 1.5em;
      }
      .ticks ul li {
        /* font-size: 1em; */
      }
    }

    /* legal Page start  */

    /* Animations */
@keyframes slide-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes hero-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation triggers */
.animate-on-scroll {
    opacity: 0;
}
.is-visible {
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hero Section */
.hero-title, .hero-subtitle, .hero-button {
    opacity: 0;
}
.hero-title {
    animation: hero-fade-in 0.8s 0.2s forwards;
}
.hero-subtitle {
    animation: hero-fade-in 0.8s 0.4s forwards;
}
.hero-button {
    animation: hero-fade-in 0.8s 0.6s forwards;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(to right, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

