html{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
  }
  
 
  /* Banner Section */
.banner09 {
  background: url('../img/service_study//study_abroad_banner.png') 
              no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* Parallax effect */
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center; /* Center content vertically */
  justify-content: flex-start; /* Align content to the left by default */
  position: relative;
  color: #fff;
  padding: 0 10%; /* Add padding for content */
}

/* Overlay for smaller devices only */
.banner09::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Content Inside Banner */
.banner09 .content09 {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.banner09 .content09 h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fcb21c;
}

.banner09 .content09 h1 .highlight09 {
  color: #1ae6ff;
}

.banner09 .content09 p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #000000;
}

.banner09 .btn09 {
  display: inline-block;
  padding: 12px 30px;
  background-color: #fcb21c;
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.banner09 .btn09:hover {
  background-color: #14b2cc;
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 1000px) {
  .banner09 {
    justify-content: flex-start; /* Align content to the start */
    padding: 0 5%; /* Reduce padding */
  }

  .banner09 .content09 {
    max-width: 500px; /* Adjust max-width of content for medium screens */
    margin-top: 324px;
  }
}

@media (max-width: 750px) {
  .banner09 {
    justify-content: flex-start;
    align-items: flex-start; /* Align content to top-left */
    padding: 10% 5%; /* Add spacing at the top */
  }

  .banner09::before {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  }

  .banner09 .content09 h1 {
    font-size: 2rem;
  }

  .banner09 .content09 p {
    font-size: 0.95rem;
    text-align: left; /* Align text to the left */
  }

  .banner09 .btn09 {
    font-size: 0.9rem;
    padding: 10px 25px;
  }
}

@media (max-width: 480px) {
  .banner09 {
    justify-content: flex-start;
    align-items: flex-start; /* Align content to top-left */
    padding: 10% 5%; /* Add spacing at the top */
    margin: auto;
  }

  .banner09 .content09 h1 {
    font-size: 1.8rem;
  }

  .banner09 .content09 p {
    font-size: 0.85rem;
    text-align: left; /* Align text to the left */
    color: white;
  }

  .banner09 .btn09 {
    font-size: 0.85rem;
    padding: 8px 20px;
  }
}

/* Default .banner .content for larger screens */
.banner09 .content09 {
  position: relative;
  z-index: 2;
  max-width: 409px;
}

  
  /* Programs section55 */
  .programs55 {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .programs55 h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .program-list {
    display: flex;
    justify-content: space-around;
    gap: 20px;
  }
  
  .program-item {
    background: #f0f0f0;
    padding: 20px;
    width: 30%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .program-item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .program-item p {
    font-size: 1rem;
  }
  
  

  
  /* Service Section */
  .service-section-unique {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 100px;
    border-bottom: 1px solid #ffffff;
    background-color: #ffffff;
  }
  
  .text-container-unique {
    flex: 1;
    padding: 20px;
  }
  
  .text-container-unique h2 {
    position: relative;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .text-container-unique h2::after {
    content: "";
    display: block;
    width: 150px;
    height: 2.5px;
    background: linear-gradient(45deg, #ff6803, #ca5690);
    position: absolute;
    bottom: -10px;
    left: 0;
  }
  
  .text-container-unique p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.4;
    color: #555;
  }
  
  /* Accordion Menu */
  .accordion-menu-unique {
    display: block;
    position: relative;
    border-radius: 5px;
  }
  
  .accordion-menu-unique h3 {
    font-size: 18px;
    line-height: 34px;
    font-weight: bolder;
    letter-spacing: 1px;
    display: block;
    margin: 0;
    cursor: pointer;
    color: #232323;
    margin-bottom: 10px; /* Spacing between the header and bullet list */
  }
  
  .accordion-menu-unique ul {
    list-style: none;
    padding: 0 0px 10px;
    margin-right: 30px;
    border-radius: 5px;
  }
  
  .accordion-menu-unique ul li {
    position: relative;
    padding: 0;
    margin: 0;
    padding-bottom: 4px;
    padding-top: 18px;
    border-top: 1px dotted #dce7eb;
  }
  
  .accordion-menu-unique ul li:nth-child(1) {
    border: none;
  }
  
  /* Adding Bullets to the Accordion List */
  .accordion-menu-unique ul li ul {
    list-style-type: disc; /* Ensures that bullets are applied */
    padding-left: 20px; /* Indents the bullets */
    margin-top: 10px;
  }
  
  .accordion-menu-unique ul li ul li {
    margin-bottom: 5px;
    color: rgba(48, 69, 92, 0.8);
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 1px;
  }
  
  /* Arrow Styling */
  .accordion-menu-unique ul li .arrow-unique {
    position: absolute;
    transform: translate(-6px, 0);
    margin-top: 16px;
    right: 0;
  }
  
  .accordion-menu-unique ul li .arrow-unique:before,
  .accordion-menu-unique ul li .arrow-unique:after {
    content: "";
    position: absolute;
    /*background-color: #f6483b;*/
    background: linear-gradient(45deg, #764f8f, #da1f3e);
    width: 3px;
    height: 9px;
  }
  
  .accordion-menu-unique ul li .arrow-unique:before {
    transform: translate(-2px, 0) rotate(45deg);
  }
  
  .accordion-menu-unique ul li .arrow-unique:after {
    transform: translate(2px, 0) rotate(-45deg);
  }
  
  /* Checkbox Behavior */
  .accordion-menu-unique ul li input[type="checkbox"] {
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
  }
  
  .accordion-menu-unique ul li input[type="checkbox"]:checked ~ ul {
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translate(0, 50%);
  }
  
  .accordion-menu-unique
    ul
    li
    input[type="checkbox"]:checked
    ~ .arrow-unique:before {
    transform: translate(2px, 0) rotate(45deg);
  }
  
  .accordion-menu-unique
    ul
    li
    input[type="checkbox"]:checked
    ~ .arrow-unique:after {
    transform: translate(-2px, 0) rotate(-45deg);
  }
  
  .transition,
  p,
  ul li .arrow-unique:before,
  ul li .arrow-unique:after {
    transition: all 0.25s ease-in-out;
  }
  
  /* Image Container */
  .image-container-unique {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 20px;
    min-height: 300px; /* Set a minimum height to avoid shifting */
  }
  
  .image-container-unique img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
  }
  
  /* Media Queries */
  @media (max-width: 768px) {
    .service-section-unique {
      flex-direction: column;
      text-align: center;
      margin-top: 40px;
      padding: 0px 25px;
    }
  
    .key-services-unique {
      margin-bottom: 50px;
      left: 30px;
    }
  
    .text-container-unique {
      text-align: left;
      padding: 0%;
      line-height: 1.4;
    }
  
    .image-container-unique {
      height: 30%;
    }
  
    .image-container-unique img {
      max-width: 105%;
    }
  }
  
  .dropdown-item {
    position: relative;
    display: inline-block;
    padding-right: 40px; /* Adjust to give space for the label */
  }
  
  .new-label {
    position: absolute;
    right: 10px;
    background-color: blue;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%);
  }
  


  
  .new-content-item {
    display: none; /* Initially hide all content */
  }
  
  .new-content-item.active {
    display: block; /* Show only the active content */
  }
  
  /* Additional class */
  .new-class-66 {
    font-size: 18px; /* Example customization */
    margin-top: 10px;
    text-align: center;
  }
  
  @media (max-width: 768px) {
    .new-menu {
      flex-direction: column;
      align-items: normal;
    }
    .new-quote-button {
      margin-left: 0;
    }
  }
  
  @media (max-width: 768px) {
      .navbar{
          padding-left: 0rem !important;
          padding-right: 1rem !important;
      }
  }
  


  .new-menu {
    position: fixed;
    top: -100px; /* Initially hidden (animated with transition) */
    left: 0;
    width: 100%;
    background-color: #0056b3;
    color: white;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    z-index: 997;
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* padding: 10px 20px; */
    transition: top 0.3s ease-in-out; /* Smooth show/hide transition */
  }
  
  .new-menu.visible {
    top: 94px; /* Visible when scrolled past the threshold */
  }
  
  .new-menu-item {
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
  }
  
  .new-menu-item:hover {
    color: #007bff;
  }
  
  .new-quote-button {
      margin-left: 13%;
      padding: 3px 3px;
      color: #0056b3;
      background-color: white;
      border: none;
      /* border-radius: 30px; */
      cursor: pointer;
      font-weight: bold;
      transition: background-color 1.3s ease, color 0.3s ease;
  }
  
  .new-quote-button:hover {
    background-color: #ffffff;
  }
  
  
  /* Default visibility */
  .new-menu {
    display: flex; /* Ensure it is visible by default */
    flex-wrap: wrap; /* Adjust for responsiveness */
  }
  
  /* Hide the menu on screens smaller than 768px */
  @media (max-width: 1068px) {
    .new-menu {
        display: none; /* Hide the menu */
    }
  }
  





.holderCircle { width: 500px; height: 500px; border-radius: 100%; margin: 60px auto; position: relative; }


.dotCircle { width: 100%; height: 100%; position: absolute; margin: auto; top: 0; left: 0; right: 0; bottom: 0; border-radius: 100%; z-index: 20; }
.dotCircle  .itemDot { display: block; width: 80px; height: 80px; position: absolute; background: #ffffff; color: #0056b3; border-radius: 20px; text-align: center; line-height: 80px; font-size: 30px; z-index: 3; cursor: pointer; border: 2px solid #e6e6e6; }
.dotCircle  .itemDot .forActive { width: 56px; height: 56px; position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: none; }
.dotCircle  .itemDot .forActive::after { content: ''; width: 5px; height: 5px; border: 3px solid #7d4ac7; bottom: -31px; left: -14px; filter: blur(1px); position: absolute; border-radius: 100%; }
.dotCircle  .itemDot .forActive::before { content: ''; width: 6px; height: 6px; filter: blur(5px); top: -15px; position: absolute; transform: rotate(-45deg); border: 6px solid #0056b3; right: -39px; }
.dotCircle  .itemDot.active .forActive { display: block; }
.round { position: absolute; left: 40px; top: 45px; width: 410px; height: 410px; border: 2px dotted #0056b3; border-radius: 100%; -webkit-animation: rotation 100s infinite linear; }
.dotCircle .itemDot:hover, .dotCircle .itemDot.active { color: #ffffff; transition: 0.5s;   /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#7d4ac7+0,a733bb+100 */ background: #77cfe6; /* Old browsers */ background: -moz-linear-gradient(left,#0056b3 0%, #2e97dd 100%); /* FF3.6-15 */ background: -webkit-linear-gradient(left, #0056b3 0%,#0056b3 100%); /* Chrome10-25,Safari5.1-6 */ background: linear-gradient(to right, #0056b3 0%, #0056b3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7d4ac7', endColorstr='#a733bb', GradientType=1); /* IE6-9 */ border: 2px solid #ffffff; -webkit-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13); -moz-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13); box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13); }
.dotCircle .itemDot { font-size: 40px; }
.contentCircle { width: 250px; border-radius: 100%; color: #222222; position: relative; top: 150px; left: 50%; transform: translate(-50%, -50%); }
.contentCircle .CirItem { border-radius: 100%; color: #222222; position: absolute; text-align: center; bottom: 0; left: 0; opacity: 0; transform: scale(0); transition: 0.5s; font-size: 15px; width: 100%; height: 100%; top: 0; right: 0; margin: auto; line-height: 250px; }
.CirItem.active { z-index: 1; opacity: 1; transform: scale(1); transition: 0.5s; }
.contentCircle .CirItem i { font-size: 180px; position: absolute; top: 0; left: 50%; margin-left: -90px; color: #000000; opacity: 0.1; }
@media only screen and (min-width:300px) and (max-width:599px) {
	.holderCircle { width: 300px; height: 300px; margin: 110px auto; }
	.holderCircle::after { width: 100%; height: 100%; }
	.dotCircle { width: 100%; height: 100%; top: 0; right: 0; bottom: 0; left: 0; margin: auto; }
}
@media only screen and (min-width:600px) and (max-width:767px) { }
@media only screen and (min-width:768px) and (max-width:991px) { }
@media only screen and (min-width:992px) and (max-width:1199px) { }
@media only screen and (min-width:1200px) and (max-width:1499px) { }
  .title-box .title { font-weight: 600; letter-spacing: 2px; position: relative; z-index: -1; }
        .title-box span { text-shadow: 0 10px 10px rgba(0, 0, 0, .15); font-weight: 800; color: #4c86dd; }
        .title-box p {font-size: 17px; line-height: 2em; }



        a,
        a:hover,
        a:focus,
        a:active {
            text-decoration: none;
            outline: none;
        }
        
        a,
        a:active,
        a:focus {
            color: #6f6f6f;
            text-decoration: none;
            transition-timing-function: ease-in-out;
            -ms-transition-timing-function: ease-in-out;
            -moz-transition-timing-function: ease-in-out;
            -webkit-transition-timing-function: ease-in-out;
            -o-transition-timing-function: ease-in-out;
            transition-duration: .2s;
            -ms-transition-duration: .2s;
            -moz-transition-duration: .2s;
            -webkit-transition-duration: .2s;
            -o-transition-duration: .2s;
        }
        
        ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        img {
    max-width: 100%;
    height: auto;
}
        section {
            padding: 1px 0;
           /* min-height: 100vh;*/
        }

.sec-title{
  position:relative;
  z-index: 1;
  margin-bottom:60px;
}

.sec-title .title{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #ff2222;
  font-weight: 500;
  margin-bottom: 15px;
}

.sec-title h2{
  position: relative;
  display: block;
  font-size:40px;
  line-height: 1.28em;
  color: #222222;
  font-weight: 600;
  padding-bottom:18px;
}

.sec-title h2:before{
  position:absolute;
  content:'';
  left:0px;
  bottom:0px;
  width:50px;
  height:3px;
  background-color:#d1d2d6;
}

.sec-title .text{
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
  margin-top: 35px;
}

.sec-title.light h2{
  color: #ffffff;
}

.sec-title.text-center h2:before{
  left:50%;
  margin-left: -25px;
}

.list-style-one{
  position:relative;
}

.list-style-one li{
  position:relative;
  font-size:16px;
  line-height:26px;
  color: #222222;
  font-weight:400;
  padding-left:35px;
  margin-bottom: 12px;
}

.list-style-one li:before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0px;
    display: block;
    font-size: 18px;
    padding: 0px;
    color: #ff2222;
    font-weight: 600;
    -moz-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1.6;
    font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover{
  color: #44bce2;
}

.btn-style-one{
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 30px;
  color: #ffffff;
  padding: 10px 30px;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.02em;
  background-color: #ff2222;
}

.btn-style-one:hover{
  background-color: #001e57;
  color: #ffffff;
}
@media (max-width: 768px) {
  .iq-features {
    display: none;
  }
}





.share-wrapper {
  position: fixed; /* Ensure it stays in place even when scrolling */
  right: 20px; /* Distance from the right edge */
  top: 650px; /* Distance from the top */
  width: 45px;
  height: 45px;
  margin: 0; /* Remove the margin for precise placement */
  z-index: 1000; /* Ensure it's above other elements */
}

/* Adjustments for medium-sized screens (tablets) */
@media (max-width: 1024px) {
  .share-wrapper {
    right: 15px;
    bottom: 20px;
    top: 650px;  /* Adjust bottom distance for tablets */
  }
}

/* Adjustments for small screens (mobile) */
@media (max-width: 768px) {
  .share-wrapper {
    right: 10px;
    bottom: 15px; /* Adjust bottom distance for mobile */
    width: 40px;
    height: 40px;
    top: 650px; 
  }
}

/* Adjustments for very small screens (extra small mobile) */
@media (max-width: 480px) {
  .share-wrapper {
    right: 5px;
    bottom: 10px; /* Adjust bottom distance for small mobile screens */
    width: 35px;
    height: 35px;
    top: 650px; 
  }
}

.share-wrapper .share-button {
  position: absolute;
  width: 45px;
  height: 45px;
  right: 7px;

  background: #fff;
  border-radius: 50%;
  display: block;
  box-shadow: 0 25px 40px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease-in-out;
  z-index: 5;
}

.share-wrapper .share-button:hover {
  translate: transformY(2px);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.share-wrapper .share-button .share-button__span-wrapper {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
}

.share-wrapper .share-button .share-button__span-wrapper span {
  font-size: 0;
  width: 100%;
  background: #1a334d;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  left: 0;
  transition: all 0.3s cubic-bezier(0.37, -0.38, 0.595, 1.395) 0s;
}

.share-wrapper .share-button .share-button__span-wrapper span:first-child {
  transform: rotate(30deg);
  transform-origin: 0 50%;
}

.share-wrapper .share-button .share-button__span-wrapper span:first-child:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a334d;
  top: 0;
  margin-top: -4px;
  margin-left: -4px;
  left: 0;
  transition: all 0.15s ease-in-out 0.25s;
}

.share-wrapper .share-button .share-button__span-wrapper span:first-child:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a334d;
  top: 0;
  margin-top: -4px;
  margin-left: -4px;
  left: 100%;
  transition: all 0.15s ease-in-out 0.25s;
}

.share-wrapper .share-button .share-button__span-wrapper span:first-child + span {
  transform: rotate(-30deg);
  transform-origin: 0 50%;
}

.share-wrapper .share-button .share-button__span-wrapper span:first-child + span:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a334d;
  top: 0;
  margin-top: -4px;
  margin-left: -4px;
  left: 100%;
  transition: all 0.15s ease-in-out 0.25s;
}

.share-wrapper .share-url {
  font-size: 0;
  z-index: 0;
  position: absolute;
  width: 10px;
  height: 10px;
  overflow: hidden;
  bottom: 50%;
  right: 50%;
  margin-bottom: -5px;
  margin-right: -5px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.share-wrapper .share-url.url-1 {
  transition-delay: 0.2s;
}

.share-wrapper .share-url.url-2 {
  transition-delay: 0.15s;
}

.share-wrapper .share-url.url-3 {
  transition-delay: 0.07s;
}

.share-wrapper .share-url.url-4 {
  transition-delay: 0s;
}

.share-wrapper .share-url:hover {
  cursor: pointer;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(1px);
}

.share-wrapper.open .share-button {
  translate: transformY(2px);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

.share-wrapper.open .share-button span {
  transition: all 0.3s cubic-bezier(0.37, -0.38, 0.595, 1.395) 0.2s;
}

.share-wrapper.open .share-button span:first-child {
  transform: rotate(-45deg);
  transform-origin: 50% 50%;
}

.share-wrapper.open .share-button span:first-child:before {
  width: 0;
  height: 0;
  margin-left: 0;
  margin-top: 0;
  transition: all 0.3s ease-in-out 0s;
}

.share-wrapper.open .share-button span:first-child:after {
  width: 0;
  height: 0;
  margin-left: 0;
  margin-top: 0;
  transition: all 0.3s ease-in-out 0s;
}

.share-wrapper.open .share-button span:first-child + span {
  transform: rotate(45deg);
  transform-origin: 50% 50%;
}

.share-wrapper.open .share-button span:first-child + span:after {
  width: 0;
  height: 0;
  margin-left: 0;
  margin-top: 0;
  transition: all 0.3s ease-in-out 0s;
}

.share-wrapper.open .share-url {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  display: block;
}

.share-wrapper.open .share-url.url-1 {
  bottom: 80px;
  right: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition-delay: 0s;
}

.share-wrapper.open .share-url.url-2 {
  bottom: 70px;
  right: 40px;
  margin-right: 0;
  margin-bottom: 0;
  transition-delay: 0.05s;
}

.share-wrapper.open .share-url.url-3 {
  bottom: 40px;
  right: 70px;
  margin-right: 0;
  margin-bottom: 0;
  transition-delay: 0.12s;
}

.share-wrapper.open .share-url.url-4 {
  bottom: 0;
  right: 80px;
  margin-bottom: 0;
  margin-right: 0;
  transition-delay: 0.2s;
}
.share-url i {
  font-size: 20px;
  color: #030303; /* A pleasant blue color */
  display: flex;
  padding: 6px;
   align-items: baseline;
  justify-content: center;
  transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition on color and transform */
}

.share-url i:hover {
  color: #000000; /* A darker blue for the hover effect */
  transform: scale(1.1); /* Slight zoom-in effect on hover */
}




    /* Container */
    .container88 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Section Styles */
    .creative-community88 {
      padding: 50px 20px;
      background-color: #ffffff;
    }

    .content-wrapper88 {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    /* Image Section */
    .image-container88 {
      flex: 1;
      text-align: center;
    }

    .image-container88 img {
      width: 100%;
      max-width: 400px;
      height: auto;
      border-radius: 50% 0 50% 50%; /* Custom image shape */
    }

    /* Text Content */
    .text-content88 {
      flex: 1;
      padding: 20px;
    }

    .text-content88 h1 {
      font-size: 32px;
      color: #4f46e5; /* Primary purple color */
      margin-bottom: 20px;
    }

    .text-content88 p {
      font-size: 16px;
      color: #5a5a5a;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .cta-buttons88 {
      display: flex;
      gap: 15px;
    }

    .cta-buttons88 a {
      text-decoration: none;
      padding: 12px 25px;
      border-radius: 5px;
      font-size: 14px;
      font-weight: bold;
      transition: background-color 0.3s;
    }

    .cta-buttons88 .join-btn88 {
      background-color: #4f46e5;
      color: #fff;
    }

    .cta-buttons88 .join-btn88:hover {
      background-color: #3b3aab;
    }

    .cta-buttons88 .support-btn88 {
      background-color: #e5e7eb;
      color: #4f46e5;
    }

    .cta-buttons88 .support-btn88:hover {
      background-color: #d1d5db;
    }

    /* Info Boxes */
    .info-boxes88 {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .info-box88 {
      flex: 1;
      background-color: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      text-align: left;
    }

    .info-box88 h2 {
      font-size: 18px;
      color: #4f46e5;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .info-box88 p {
      font-size: 14px;
      color: #5a5a5a;
      margin-bottom: 15px;
    }

    .info-box88 a {
      text-decoration: none;
      color: #4f46e5;
      font-weight: bold;
      font-size: 14px;
    }

    .info-box88 a:hover {
      text-decoration: underline;
    }

    /* Newsletter Form */
    .newsletter88 {
      margin-top: 30px;
      text-align: center;
    }

    .newsletter-form88 {
      display: flex;
      justify-content: center;
      gap: 10px;
    }

    .newsletter-form88 input {
      width: 60%;
      padding: 10px 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 14px;
    }

    .newsletter-form88 button {
      background-color: #4f46e5;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 14px;
      transition: background-color 0.3s;
    }

    
    /* Responsive Styles */
    @media (max-width: 768px) {
      .content-wrapper88 {
        flex-direction: column;
      }

      .image-container88 img {
        margin-bottom: 20px;
      }

      .info-boxes88 {
        flex-direction: column;
      }

      
    }



   


    

.container00 {
  max-width: 1170px;
  margin: auto;
  padding-right: 15px;
  padding-left: 15px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Roboto', sans-serif; */
}

.heading00 h1:after {
  content: '';
  display: block;
  width: 2px;
  height: 2px;
  background: #BABABA;
  margin-top: 4px;
  
}

.clear-fix00 {
  clear: both;
}

.hidden00 {
  visibility: hidden !important;
}

/* end global */

/* start of our services section */

#our-services {
  background: #f6f6f6;
  /* min-height: 100vh; */
  /* padding-top: 25vh; */
}

/* OUR SEERVICES LEFT SIDE */

#our-services .desc {
  width: 33%;
  float: left;
}

#our-services .desc .heading00 h1 {
  text-transform: uppercase;
  /* font-weight: bold; */
  letter-spacing: 1.4px;
  margin-bottom: 30px;
}

#our-services .desc .text {
  text-align: -webkit-left;
  color: #BABABA;
}

/* OUR SERVICES RIGHT SIDE */

#our-services .services {
  width: 67%;
  float: left;
}

#our-services .services .column {
  float: left;
  margin-right: 60px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

#our-services .services .column .service {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  background: #FFFFFF;
  transition: all 0.8s ease;
  margin-bottom: 7px;
}

#our-services .services .column .service:hover {
  background: #0505fd;
  color: #fff;
}

#our-services .services .column .service:hover .service-icon {
  color: #fff;
}

#our-services .services .column .service .service-desc {
  transform: rotate(-45deg);
  text-align: center;
  text-transform: uppercase;
  font-size: 10px;
  /* font-weight: bold; */
  transition: transform 0.3s ease;
}

#our-services .services .column .service .service-desc .service-icon  {
  font-size: 20px;
  margin-bottom: 5px;
  color: #f57469;
}

/* end of our services section */

/* media query */

@media all and (max-width: 967px) {
  #our-services {
      padding-top: 60px;
  }
  
  #our-services .desc {
      width: 100%;
      float: none;
      margin-bottom: 30px;
  }
  
  #our-services .services {
      width: 100%;
  }
  
  #our-services .services .column {
      transform: rotate(0deg);
      margin-right: -1px;
  }
  
  #our-services .services .column .service .service-desc {
      transform: rotate(0deg);
  }
}



  /* Section Styling */
  .section55 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 44px 0%;
  }

  .solution55 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
  }

  .solution-item55 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    width: 120%;
    max-width: 1200px;
    margin: 20px;
  }

  /* Image Styling - Custom Elliptical Shapes */
  .solution-item55 img {
    width: 50%;
    object-fit: cover;
    clip-path: ellipse(75% 50% at 50% 50%); /* Create elliptical shape */
    -webkit-clip-path: ellipse(75% 50% at 50% 50%); /* Safari support */
  }

  /* Content Styling */
  .solution-content55 {
    padding: 20px;
    max-width: 50%;
    text-align: left;
  }

  .solution-content55 h355 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #4e429b;
    margin-bottom: 15px;
  }

  .solution-content55 p55 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
  }

  .solution-buttons55 {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .btn55 {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .btn-primary55 {
    background-color: #6b49d5;
    color: #fff;
  }

  .btn-primary55:hover {
    background-color: #5332b3;
  }

  .btn-secondary55 {
    background-color: #f5f5f5;
    color: #6b49d5;
    border: 1px solid #6b49d5;
  }

  .btn-secondary55:hover {
    background-color: #6b49d5;
    color: #fff;
  }

  /* Media Queries */
  @media (max-width: 768px) {
    .solution-item55 {
      flex-direction: column;
      text-align: center;
    }

    .solution-item55 img {
      width: 80%;
      margin: 20px auto;
    }

    .solution-content55 {
      max-width: 100%;
      padding: 10px;
    }
  }

  @media (max-width: 480px) {
    .solution-content55 h355 {
      font-size: 1.5rem;
    }

    .solution-content55 p55 {
      font-size: 0.9rem;
    }

    .btn55 {
      font-size: 0.9rem;
      padding: 8px 16px;
    }
  }



    /* Section Container */
    .digital-agency-section-06 {
      max-width: 1500px;
      margin: 50px auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
     padding: 32px 20px;
      /* background: #ffffff;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      border-radius: 15px; */
      overflow: hidden;
    }

    /* Text Content */
    .text-content-06 {
      flex: 1;
      padding-right: 20px;
    }

    .text-content-06 h1 {
      font-size: 36px;
      color: #2b2e4a;
      margin-bottom: 20px;
      line-height: 1.4;
    }

    .text-content-06 p {
      font-size: 16px;
      color: #5a5a5a;
      margin-bottom: 30px;
      line-height: 1.8;
    }

    .text-content-06 ul {
      list-style: none;
      margin-bottom: 30px;
      padding-left: 0;
    }

    .text-content-06 ul li {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      font-size: 16px;
      color: #555;
    }

    .text-content-06 ul li i {
      color: #4caf50;
      margin-right: 10px;
      font-size: 18px;
    }

    /* Image Content */
    .image-content-06 {
      flex: 1;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .image-content-06 img {
      width: 100%;
      max-width: 500px;
      border-radius: 20px;
      transform: scale(1);
      transition: transform 0.3s ease-in-out;
    }



    .image-content-06::before {
      content: '';
      position: absolute;
      top: -30px;
      right: 5px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background-color: #6c63ff;
      z-index: -1;
      opacity: 0.6;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .digital-agency-section-06 {
        flex-direction: column;
        text-align: center;
        padding: 30px 15px;
      }

      .text-content-06 {
        padding-right: 0;
      }

      .image-content-06 {
        margin-top: 20px;
      }

      .image-content-06 img {
        max-width: 100%;
      }

      /* Hides blue background on smaller screens */
      .image-content-06::before {
        display: none;
      }

      .text-content-06 h1 {
        font-size: 28px;
      }

      .text-content-06 p {
        font-size: 14px;
      }

      .text-content-06 ul li {
        font-size: 14px;
      }
    }

     @import url('https://fonts.googleapis.com/css?family=Hind:300,400&display=swap');

.container99S {
  margin: 0 auto;
  padding: 4rem;
  /* width: 48rem; */
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item.button-71 button[aria-expanded='true'] {
  border-bottom: 1px solid #03b5d2;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding-left: 20px;
  margin-left:6px;
  padding: 1em 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #03b5d2;
}

.accordion button:hover .icon::after,
.accordion button:focus .icon::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 10px;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
@media (max-width: 768px) {
  .accordion button .icon {
    top: 12px; /* Adjusts the top position for smaller screens */
    right: 8px; /* Moves it slightly closer to the edge */
    width: 18px; /* Reduces the icon size for better fit */
    height: 18px; /* Matches width for a proportional look */
    border-width: 1px; /* Keeps the border thinner for smaller icons */
    border-radius: 18px; /* Matches the new width/height for a perfect circle */
  }
}

@media (max-width: 480px) {
  .accordion button .icon {
    top: 45px;
    right: 11px;
    width: 24px;
    height: 16px;
    border-width: 0.8px;
    border-radius: 16px;  }
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #03b5d2;
}

.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}

.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 24px;
}









    