*{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family: Arial, sans-serif;
    }

    /* TOP BAR */
    .top-bar{
      background:#030E2C;
      color:#fff;
      padding:10px 0;
      font-size:14px;
    }

    .top-bar i{
      margin-right:6px;
    }

    .social-icons i{
      margin-left:15px;
      cursor:pointer;
    }

    /* NAVBAR */
    .navbar{
      background:#fff;
      padding:18px 0;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    .navbar-brand{
      font-size:32px;
      font-weight:bold;
      color:#0b1c54;
    }

    .navbar-brand span{
      color:#ff6b2d;
    }

    .nav-link{
      color:#0b1c54 !important;
      font-weight:600;
      margin:0 10px;
    }

    .quote-btn{
     background:#1e0876;
      color:#fff;
      padding:12px 25px;
      border:none;
      font-weight:bold;
      transition:0.3s;
    }

    .quote-btn:hover{
    background:#1e0876;
    }

    /* HERO SECTION */
    .hero{
      height:90vh;
      background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url('./images/photo-1504307651254-35680f356dfd.jfif');
      background-size:cover;
      background-position:center;
      display:flex;
      align-items:center;
      color:#fff;
      position:relative;
    }

    .hero-content h5{
      color: #E83E8C;
      font-size:22px;
      font-weight:700;
      margin-bottom:15px;
    }

    .hero-content h1{
      font-size:72px;
      font-weight:800;
      line-height:1.1;
      margin-bottom:25px;
    }
    .hero-content span{
      background: linear-gradient(
  90deg,
  #FF4D8D 0%,
  #7A3EF0 50%,
  #20C9FF 100%
);

-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    }

    .hero-content p{
      font-size:20px;
      max-width:750px;
      margin-bottom:30px;
    }

    .project-btn{
      background:#1e0876;
  
  color:#FFFFFF;
  border:none;
  transition: all 0.4s ease;
      color:#fff;
      border:none;
      padding:16px 35px;
      font-size:18px;
      font-weight:bold;
      transition:0.3s;
    }

    .project-btn:hover{
      background:#1e0876;

  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(122,62,240,0.35);
    }

    /* =========================
   FEATURES
========================= */

.features{
  margin-top:40px;
  position:relative;
  z-index:5;
}

/* FEATURE BOX */
.feature-box{
  background:#FFFFFF;
  color:#fff;
  border:1px solid #ECEBFF;
  box-shadow:0 8px 25px rgba(0,0,0,0.05);
  padding:10px 20px;
  height:100%;
  transition:0.3s ease;
  position:relative;
  overflow:hidden;
}

/* TOP BORDER */
.feature-box::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
 background: linear-gradient(
   90deg,
   #7A3EF0,
   #9333EA
);
}

/* HOVER */
.feature-box:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* TITLE ROW */
.feature-title{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:20px;
}

/* ICON */
.feature-title i{
  font-size:42px;
  background: linear-gradient(
   135deg,
   #7A3EF0,
   #9333EA
);
padding: 5px;
  flex-shrink:0;
}

/* HEADING */
.feature-title h3{
  font-size:26px;
  color:#0B1B5E;
  font-weight:700;
  margin:0;
  line-height:1.4;
}

/* TEXT */
.feature-box p{
  font-size:16px;
  line-height:1.8;
  color:#5F6475;
  margin:0;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  .features{
    margin-top:-50px;
  }

  .feature-box{
    padding:35px 28px;
  }

  .feature-title h3{
    font-size:24px;
  }
}

@media(max-width:768px){

  .features{
    margin-top:0;
    padding-top:50px;
  }

  .feature-box{
    padding:35px 25px;
  }

  .feature-title{
    gap:14px;
  }

  .feature-title i{
    font-size:36px;
  }

  .feature-title h3{
    font-size:22px;
  }

  .feature-box p{
    font-size:15px;
  }
}

/* HERO CAROUSEL */
.hero-carousel{
  position: relative;
}

.hero-slide{
  /* height: 90vh; */
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  padding: 10rem 5%;
}

.hero-slide::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-slide .container{
  position: relative;
  z-index: 2;
}

.slide-1{
  background:
    url('./images/photo-1504307651254-35680f356dfd.jfif');
  background-size: cover;
  background-position: center;
}

.slide-2{
  background:
    url('./images/photo-1541888946425-d81bb19240f5.jfif');
  background-size: cover;
  background-position: center;
}

.slide-3{
  background:
    url('./images/photo-1503387762-592deb58ef4e.jfif');
  background-size: cover;
  background-position: center;
}

/* HERO CONTENT */
.hero-content h5{
  color: #E83E8C;
  font-size:28px;
  font-weight:700;
  margin-bottom:15px;
}

.hero-content h1{
  font-size:60px;
  font-weight:800;
  line-height:1.1;
  margin-bottom:25px;
}

.hero-content p{
  font-size:17px;
  max-width:700px;
  margin-bottom:30px;
}

.project-btn{
  background: #1e0876;
  
  color:#FFFFFF;
  border:none;
  transition: all 0.4s ease;
  
  
  border:none;
  transition: all 0.4s ease;

  border:none;
  padding:15px 35px;
  font-size:20px;
  font-weight:bold;
  
}

.project-btn:hover{
 background: #1e0876;

  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(122,62,240,0.35);
}

/* Carousel Buttons */
.carousel-control-prev,
.carousel-control-next{
  width: 70px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
  background-color:#7A3EF0;
  

color:#FFFFFF;
  padding:25px;
  border-radius:5px;
}

/* Indicators */
.carousel-indicators [data-bs-target]{
  width:14px;
  height:14px;
  border-radius:50%;
  background-color:#7A3EF0;
  color:#FFFFFF;

}

@media(max-width:768px){

  .hero-slide{
    height:auto;
    padding:120px 0;
  }

  .hero-content h1{
    font-size:42px;
  }

  .hero-content p{
    font-size:16px;
  }
}


  /* =========================
   ABOUT SECTION
========================= */

.about-section{
  background:#f4f4f4;
  padding:70px 0;
}

/* IMAGE AREA */
.about-images{
  position:relative;
  min-height:520px;
}

.main-img{
  width:70%;
}

.main-img img{
  width:100%;
  height:450px;
  object-fit:cover;
  /* border-radius:10px; */
}

.small-img{
  position:absolute;
  bottom:0;
  right:0;
  width:55%;
  border:6px solid #fff;
}

.small-img img{
  width:100%;
  height:320px;
  object-fit:cover;
  /* border-radius:10px; */
}

/* EXPERIENCE BOX */
.experience-box{
  position:absolute;
    top: 124px;
    right: 119px;
  width:130px;
  height:130px;
 background: linear-gradient(
   135deg,
   #FF4D8D,
   #7A3EF0
);

color:#FFFFFF;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  transform:rotate(45deg);
  border:6px solid #fff;
  z-index:2;
}

.experience-box h2,
.experience-box p{
  transform:rotate(-45deg);
}

.experience-box h2{
  font-size:30px;
  font-weight:800;
  margin-bottom:2px;
}

.experience-box p{
  text-align:center;
  font-size:14px;
  font-weight:700;
  line-height:1.2;
}

/* CONTENT AREA */
.about-content h5{
  color:#7A3EF0;
  font-size:18px;
  font-weight:700;
  margin-bottom:10px;
}

.about-content h2{
  font-size:38px;
  line-height:1.3;
  font-weight:800;
  color:#0B1B5E;
  margin-bottom:18px;
}
.about-content h2 span{
  background: linear-gradient(
   90deg,
   #7A3EF0,
   #FF4D8D
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.title-line{
  width:120px;
  height:3px;
background: linear-gradient(
   90deg,
   #7A3EF0,
   #FF4D8D
);
  margin-bottom:20px;
}

.about-text{
  font-size:15px;
  line-height:1.7;
  color:#5F6475;
  margin-bottom:25px;
}

/* SERVICE ITEMS */
.service-item{
  margin-bottom:20px;
  align-items:flex-start;
}

.service-icon{
  min-width:50px;
  height:50px;
  background: linear-gradient(
   135deg,
   #7A3EF0,
   #9333EA
);
  color:#fff;
  display:flex;
  justify-content:center;
  align-items:center;
  border-radius:6px;
  margin-right:15px;
  font-size:18px;
}

.service-item h4{
  font-size:22px;
  color:#0B1B5E;
  font-weight:700;
  margin-bottom:6px;
}

.service-item p{
  font-size:14px;
color:#5F6475;
  line-height:1.6;
  margin-bottom:0;
}

/* BUTTON */
.learn-btn{
 background: linear-gradient(
   90deg,
   #FF8A00,
   #FF4D8D,
   #7A3EF0
);

color:#FFFFFF;
  
  border:none;
  padding:12px 28px;
  font-size:16px;
  font-weight:600;
  border-radius:5px;
  transition:0.3s;
}

.learn-btn:hover{
 background: linear-gradient(
   90deg,
   #7A3EF0,
   #20C9FF
);

transform:translateY(-3px);

box-shadow:
   0 10px 25px rgba(122,62,240,0.3);
}

/* RESPONSIVE */
@media(max-width:991px){

  .about-images{
    min-height:auto;
    margin-bottom:50px;
  }

  .main-img{
    width:100%;
  }

  .small-img{
    position:relative;
    width:80%;
    margin:-80px auto 0;
  }

  .experience-box{
    width:110px;
    height:110px;
    top:20px;
    right:20px;
  }

  .experience-box h2{
    font-size:30px;
  }

  .experience-box p{
    font-size:12px;
  }

  .about-content h2{
    font-size:30px;
  }

  .service-item h4{
    font-size:20px;
  }
}

@media(max-width:768px){

  .about-section{
    padding:50px 0;
  }

  .about-content h2{
    font-size:26px;
  }

  .about-text,
  .service-item p{
    font-size:14px;
  }

  .service-item{
    flex-direction:column;
  }

  .service-icon{
    margin-bottom:15px;
  }

  .main-img img{
    height:350px;
  }

  .small-img img{
    height:250px;
  }
}

/* =========================
   SERVICES SECTION
========================= */

.services-section{
  background:#FFFFFF;
  padding:55px 0;
  position:relative;
}

/* TITLE */
.section-title{
  margin-bottom:35px;
}

.section-title h5{
  color:#7A3EF0;
  font-size:14px;
  font-weight:700;
  margin-bottom:6px;
}

.section-title h2{
  color:#0B1B5E;
  font-size:28px;
  font-weight:700;
}

/* CAROUSEL */
#servicesCarousel{
  position:relative;
  padding:0 30px;
}

/* CARD */
.service-card{
  background:#FFFFFF;
  position:relative;
  overflow:hidden;
  transition:0.3s;
  box-shadow:0 3px 12px rgba(0,0,0,0.05);
  margin-bottom:20px;
  border-radius:8px;
  height:100%;
  display:flex;
  border: 2px solid #ECEBFF;
  flex-direction:column;
}

.service-card:hover{
  transform:translateY(-4px);
}

/* IMAGE */
.service-img{
  overflow:hidden;
}

.service-img img{
  width:100%;
  height:170px;
  object-fit:cover;
  transition:0.4s;
}

.service-card:hover .service-img img{
  transform:scale(1.04);
}

/* ICON BOX */
.service-icon-box{
  width:55px;
  height:55px;
 background: linear-gradient(
   135deg,
   #7A3EF0,
   #9333EA
);
  position:absolute;
  top:142px;
  left:50%;
  transform:translateX(-50%) rotate(45deg);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}

.service-icon-box i{
  color:#fff;
  font-size:18px;
  transform:rotate(-45deg);
}

/* CONTENT */
.service-content{
  padding:45px 18px 20px;
  text-align:center;
  flex:1;
  display:flex;
  flex-direction:column;
}

.service-content h3{
  color:#07185c;
  font-size:18px;
  font-weight:700;
  margin-bottom:10px;
  line-height:1.4;
  min-height:45px;
}

.service-content p{
  color:#666;
  font-size:13px;
  line-height:1.6;
  margin-bottom:0;
}

/* CAROUSEL CONTROLS */
#servicesCarousel .carousel-control-prev,
#servicesCarousel .carousel-control-next{
  width:38px;
  height:38px;
  top:50%;
  transform:translateY(-50%);
  opacity:1;
}

#servicesCarousel .carousel-control-prev{
  left:-5px;
}

#servicesCarousel .carousel-control-next{
  right:-5px;
}

#servicesCarousel .carousel-control-prev-icon,
#servicesCarousel .carousel-control-next-icon{
  background-color:#ff6b2d;
  border-radius:5px;
  padding:12px;
  background-size:50%;
  display: none;
}

/* REMOVE INDICATORS */
.services-indicators{
  display:none;
}

/* RESPONSIVE */
@media(max-width:991px){

  #servicesCarousel{
    padding:0;
  }

  .section-title h2{
    font-size:24px;
  }

  .service-content h3{
    font-size:17px;
    min-height:auto;
  }

  #servicesCarousel .carousel-control-prev,
  #servicesCarousel .carousel-control-next{
    display:none;
  }
}

@media(max-width:768px){

  .services-section{
    padding:45px 0;
  }

  .section-title h2{
    font-size:22px;
  }

  .service-img img{
    height:160px;
  }

  .service-icon-box{
    width:50px;
    height:50px;
    top:135px;
  }

  .service-icon-box i{
    font-size:16px;
  }

  .service-content{
    padding:40px 15px 18px;
  }

  .service-content h3{
    font-size:16px;
  }

  .service-content p{
    font-size:12px;
  }
}


/* =========================
   COUNTER SECTION
========================= */

.counter-section{
  position:relative;
  background:url('./images/photo-1484154218962-a197022b5858.jfif');
  background-size:cover;
  background-position:center;
  height:300px;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.counter-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.75);
}

/* BOX */
.counter-box{
  position:relative;
  z-index:2;
  color:#fff;
  text-align:center;
}

/* ICON */
.counter-icon{
  width:28px;
  height:28px;
  background:#FF4D8D;
  margin:0 auto 5px;
  display:flex;
  align-items:center;
  justify-content:center;
  transform:rotate(45deg);
}

.counter-icon i{
  font-size:9px;
  color:#fff;
  transform:rotate(-45deg);
}

/* NUMBER */
.counter-box h2{
  font-size:14px;
  font-weight:700;
  margin-bottom:2px;
  line-height:1;
}

/* TITLE */
.counter-box h4{
  font-size:8px;
  font-weight:500;
  margin-bottom:5px;
  text-transform:uppercase;
  letter-spacing:1px;
}

/* LINE */
.counter-line{
  width:18px;
  height:1px;
background:rgba(255,255,255,0.15);  margin:auto;
}

/* MOBILE */
@media(max-width:768px){

  .counter-section{
    height:auto;
    padding:25px 0;
  }

  .counter-box{
    margin-bottom:15px;
  }
}



/* =========================
   WHY CHOOSE US SECTION
========================= */

.why-section{
  background:#FFFFFF;
  padding:60px 0;
  overflow:hidden;
}

/* LEFT CONTENT */
.why-content h5{
 color:#FF4D8D;
  font-size:14px;
  font-weight:700;
  margin-bottom:8px;
}

.why-content h2{
  color:#07185c;
  font-size:34px;
  font-weight:800;
  line-height:1.3;
  margin-bottom:16px;
  max-width:500px;
}

.why-line{
  width:90px;
  height:2px;
background:linear-gradient(
   90deg,
   #7A3EF0,
   #FF4D8D
);  margin-bottom:20px;
  position:relative;
}

.why-line::before,
.why-line::after{
  content:"";
  width:6px;
  height:6px;
 background:linear-gradient(
   90deg,
   #7A3EF0,
   #FF4D8D
);
  border-radius:50%;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
}

.why-line::before{
  left:0;
}

.why-line::after{
  right:0;
}

.why-content p{
color:#5F6475;
  font-size:14px;
  line-height:1.8;
  margin-bottom:22px;
  max-width:520px;
}

/* LIST */
.why-list{
  padding:0;
  margin:0;
}

.why-list li{
color:#4B5563;
  font-size:14px;
  margin-bottom:12px;
  display:flex;
  align-items:flex-start;
  gap:10px;
  line-height:1.6;
}

.why-list li i{
color:#7A3EF0;
  font-size:14px;
  margin-top:4px;
}

/* BUTTON */
.why-btn{
  background:#1e0876;
color:#FFFFFF;  border:none;
  padding:10px 22px;
  font-size:13px;
  font-weight:700;
  margin-top:10px;
  transition:0.3s;
}

.why-btn:hover{
background:#1e0876;

transform:translateY(-3px);

box-shadow:
   0 15px 35px rgba(122,62,240,0.25);
}

/* IMAGE AREA */
.why-image{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
}

.image-bg{
  position:absolute;
  width:18%;
  height:108%;
 background:linear-gradient(
   135deg,
   #FF4D8D,
   #7A3EF0
);
border-radius:22px;
box-shadow:
   0 15px 35px rgba(0,0,0,0.08);
  right:0;
  top:-15px;
}

.why-image img{
  position:relative;
  width:88%;
  height:380px;
  object-fit:cover;
  z-index:2;
}

/* =========================
   LARGE SCREEN
========================= */
@media(max-width:1200px){

  .why-content h2{
    font-size:30px;
  }

  .why-image img{
    height:340px;
  }
}

/* =========================
   TABLET
========================= */
@media(max-width:991px){

  .why-section{
    padding:50px 0;
  }

  .why-content{
    margin-bottom:35px;
    text-align:center;
  }

  .why-content h2{
    font-size:28px;
    max-width:100%;
  }

  .why-line{
    margin:0 auto 20px;
  }

  .why-content p{
    max-width:100%;
    font-size:13px;
  }

  .why-list{
    display:inline-block;
    text-align:left;
  }

  .why-list li{
    font-size:13px;
  }

  .why-image{
    margin-top:10px;
  }

  .why-image img{
    width:100%;
    height:320px;
  }

  .image-bg{
    width:20%;
    height:105%;
    right:-10px;
    top:-12px;
  }
}

/* =========================
   MOBILE
========================= */
@media(max-width:768px){

  .why-section{
    padding:40px 0;
  }

  .why-content h5{
    font-size:13px;
  }

  .why-content h2{
    font-size:24px;
    line-height:1.4;
  }

  .why-content p{
    font-size:12px;
    line-height:1.7;
  }

  .why-list li{
    font-size:12px;
    margin-bottom:10px;
    gap:8px;
  }

  .why-list li i{
    font-size:12px;
  }

  .why-btn{
    padding:8px 18px;
    font-size:12px;
  }

  .why-image img{
    width:100%;
    height:240px;
  }

  .image-bg{
    width:22%;
    height:104%;
    right:-5px;
    top:-10px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media(max-width:480px){

  .why-content h2{
    font-size:20px;
  }

  .why-content p,
  .why-list li{
    font-size:11px;
  }

  .why-image img{
    height:200px;
  }

  .image-bg{
    width:24%;
    height:102%;
  }
}


/* =========================
   WORK PROCESS SECTION
========================= */
/* =========================
   WORK PROCESS SECTION
========================= */

.work-process-section{
  background:#FFFFFF;
  padding:70px 0;
}

/* LEFT CONTENT */
.process-content h5{
color:#7A3EF0;  font-size:18px;
  font-weight:700;
  margin-bottom:12px;
}

.process-content h2{
  color:#0B1B5E;
  font-size:42px;
  font-weight:800;
  line-height:1.3;
  margin-bottom:22px;
}

.process-content p{
color:#5F6475;
  font-size:26px;
  line-height:1.8;
  margin-bottom:28px;
}

/* BUTTON */
.process-btn{
background:#1e0876;

color:#FFFFFF;
  border:none;
  padding:14px 30px;
  font-size:16px;
  font-weight:600;
  border-radius:5px;
  transition:0.3s;
}

.process-btn:hover{
 background:#1e0876;

box-shadow:
   0 15px 35px rgba(122,62,240,0.25);
}

/* PROCESS BOX */
.process-box{
  background:#FFFFFF;

border:1px solid #ECEBFF;

box-shadow:
   0 8px 25px rgba(0,0,0,0.05);
  padding:28px;
  height:100%;
  position:relative;
  box-shadow:0 4px 15px rgba(0,0,0,0.05);
  border-bottom:4px solid #9333EA;   
  border-radius:8px;
  transition:0.3s;
}

.process-box:hover{
  transform:translateY(-5px);
}

/* TOP AREA */
.process-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:22px;
}

.process-top i{
  font-size:36px;
  color:#7A3EF0;
}

.process-top span{
  width:48px;
  height:48px;
  background:linear-gradient(
   135deg,
   #7A3EF0,
   #9333EA
);

color:#FFFFFF;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  font-size:20px;
  font-weight:700;
}

/* TITLE */
.process-box h3{
 color:#0B1B5E;
  font-size:24px;
  font-weight:700;
  margin-bottom:12px;
  line-height:1.4;
}

/* TEXT */
.process-box p{
color:#5F6475;
  font-size:14px;
  line-height:1.7;
  margin-bottom:0;
}

/* RESPONSIVE */
@media(max-width:991px){

  .process-content{
    margin-bottom:35px;
  }

  .process-content h2{
    font-size:34px;
  }

  .process-box h3{
    font-size:20px;
  }
}

@media(max-width:768px){

  .work-process-section{
    padding:50px 0;
  }

  .process-content h5{
    font-size:16px;
  }

  .process-content h2{
    font-size:28px;
  }

  .process-content p{
    font-size:14px;
  }

  .process-btn{
    font-size:15px;
    padding:12px 24px;
  }

  .process-box{
    padding:22px;
  }

  .process-top i{
    font-size:30px;
  }

  .process-top span{
    width:42px;
    height:42px;
    font-size:18px;
  }

  .process-box h3{
    font-size:19px;
  }

  .process-box p{
    font-size:13px;
  }
}

/* =========================
   TEAM SECTION
========================= */

.team-section{
  background:#FFFFFF;
  padding:70px 0;
}

/* TITLE */
.section-title{
  margin-bottom:45px;
}

.section-title h5{
  color:#7A3EF0; 
  font-size:18px;
  font-weight:700;
  margin-bottom:8px;
}

.section-title h2{
  color:#0B1B5E;
  font-size:42px;
  font-weight:800;
  margin-bottom:15px;
}

.title-line{
  width:120px;
  height:3px;
  background: linear-gradient(
   90deg,
   #7A3EF0,
   #FF4D8D
);
  margin:auto;
  position:relative;
}

.title-line::before,
.title-line::after{
  content:"";
  width:8px;
  height:8px;
 background: linear-gradient(
   90deg,
   #7A3EF0,
   #FF4D8D
);
  border-radius:50%;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
}

.title-line::before{
  left:0;
}

.title-line::after{
  right:0;
}

/* TEAM CARD */
.team-card{
  background:#fff;
  overflow:hidden;
  transition:0.3s;
  box-shadow:0 4px 15px rgba(0,0,0,0.05);
  border-radius:8px;
  height:100%;
}

.team-card:hover{
  transform:translateY(-5px);
}

/* IMAGE */
.team-img{
  position:relative;
  overflow:hidden;
  border-radius:18px 18px 0 0;
}

.team-img img{
  width:100%;
  height:300px;
  object-fit:cover;
  transition:0.4s;
}

.team-card:hover .team-img img{
  transform:scale(1.05);
}

/* SOCIAL ICONS */
.team-social{
  position:absolute;
  top:18px;
  right:-55px;
  display:flex;
  flex-direction:column;
  gap:15px;
  transition:0.4s;
}

.team-card:hover .team-social{
  right:18px;
}

.team-social a{
  width:42px;
  height:42px;
 background:linear-gradient(
   135deg,
   #7A3EF0,
   #9333EA
);

color:#FFFFFF;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:16px;
  transform:rotate(45deg);
  transition:0.3s;
  border-radius:4px;
}

.team-social a:hover{
background:linear-gradient(
   135deg,
   #FF4D8D,
   #7A3EF0
);
}

.team-social a i{
  transform:rotate(-45deg);
}

/* CONTENT */
.team-content{
  padding:20px 15px;
  text-align:center;
  background:#FFFFFF;

border:1px solid #ECEBFF;

box-shadow:
   0 8px 25px rgba(0,0,0,0.05);
}

.team-content h3{
  color:#0B1B5E;
  font-size:22px;
  font-weight:700;
  margin-bottom:6px;
}

.team-content span{
  color:#7A3EF0;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
}

/* RESPONSIVE */
@media(max-width:991px){

  .section-title h2{
    font-size:34px;
  }

  .team-content h3{
    font-size:20px;
  }

  .team-img img{
    height:260px;
  }
}

@media(max-width:768px){

  .team-section{
    padding:50px 0;
  }

  .section-title{
    margin-bottom:35px;
  }

  .section-title h5{
    font-size:16px;
  }

  .section-title h2{
    font-size:28px;
  }

  .title-line{
    width:100px;
  }

  .team-img img{
    height:240px;
  }

  .team-content h3{
    font-size:18px;
  }

  .team-content span{
    font-size:12px;
  }

  .team-social a{
    width:38px;
    height:38px;
    font-size:14px;
  }
}

/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section{
  position:relative;
  background:
    url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=1600');
  background-size:cover;
  background-position:center;
  padding:70px 0;
  overflow:hidden;
}

/* OVERLAY */
.testimonial-overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.45);
}

/* TITLE */
.section-title{
  position:relative;
  z-index:2;
  margin-bottom:45px;
}

.section-title h5{
  color:#7A3EF0;
  font-size:18px;
  font-weight:700;
  margin-bottom:8px;
}

.section-title h2{
  color:#0B1B5E;
  font-size:40px;
  font-weight:800;
  margin-bottom:15px;
}

.title-line{
  width:120px;
  height:3px;
 background: linear-gradient(
   90deg,
   #7A3EF0,
   #FF4D8D
);
  margin:auto;
  position:relative;
}

.title-line::before,
.title-line::after{
  content:"";
  width:8px;
  height:8px;
background: linear-gradient(
   90deg,
   #7A3EF0,
   #FF4D8D
);
  border-radius:50%;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
}

.title-line::before{
  left:0;
}

.title-line::after{
  right:0;
}

/* CARD */
.testimonial-card{
 background: rgba(255,255,255,0.96);

backdrop-filter: blur(10px);

border:1px solid rgba(255,255,255,0.4);
  padding:25px;
  position:relative;
  height:100%;
  border-radius:8px;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);

  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

/* CLIENT IMAGE */
.client-img{
  position:relative;
  width:75px;
  height:75px;
}

.client-img img{
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
  border:4px solid #7A3EF0;
}

.client-img span{
  position:absolute;
  bottom:0;
  right:-4px;
  width:28px;
  height:28px;
  background:#00135d;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  transform:rotate(45deg);
  border-radius:4px;
}

.client-img span i{
  transform:rotate(-45deg);
  font-size:11px;
}

/* TEXT */
.testimonial-text{
  color:#666;
  font-size:20px;
  line-height:1.7;
  margin:22px 0;
  min-height:120px;
}

/* INFO */
.testimonial-info{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-top:auto;
}

.testimonial-info h3{
color:#0B1B5E;
  font-size:22px;
  font-weight:700;
  margin-bottom:5px;
}

.testimonial-info h5{
color:#7A3EF0;  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
}

/* QUOTE ICON */
.quote-icon{
  color:#FF4D8D;
  font-size:45px;
  opacity:0.9;
}

/* INDICATORS */
.testimonial-indicators{
  bottom:-50px;
}

.testimonial-indicators [data-bs-target]{
  width:28px;
  height:8px;
  border:none;
  border-radius:20px;
  background:#fff;
  opacity:0.6;
}

.testimonial-indicators .active{
  background:#ff6b2d;
  opacity:1;
}

/* RESPONSIVE */
@media(max-width:991px){

  .section-title h2{
    font-size:34px;
  }

  .testimonial-info h3{
    font-size:20px;
  }

  .testimonial-text{
    font-size:13px;
    min-height:auto;
  }

  .quote-icon{
    font-size:38px;
  }
}

@media(max-width:768px){

  .testimonial-section{
    padding:50px 0 80px;
  }

  .section-title{
    margin-bottom:35px;
  }

  .section-title h5{
    font-size:16px;
  }

  .section-title h2{
    font-size:28px;
  }

  .title-line{
    width:100px;
  }

  .testimonial-card{
    padding:20px;
  }

  .testimonial-text{
    font-size:13px;
  }

  .testimonial-info{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
  }

  .testimonial-info h3{
    font-size:18px;
  }

  .testimonial-info h5{
    font-size:12px;
  }

  .quote-icon{
    font-size:34px;
  }
}

/* =========================
   CTA SECTION
========================= */

.cta-section{
  position:relative;
  background:
    url('./images/Banner.jpg');
  background-size:cover;
  background-position:center;
  padding:3rem 5%;
  overflow:hidden;
}

/* OVERLAY */
.cta-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

/* CONTENT */
.cta-content{
  position:relative;
  z-index:2;
  max-width:850px;
}

/* SUBTITLE */
.cta-content h5{
    color: rgb(122, 62, 240);
      font-size:22px;
  font-weight:700;
  margin-bottom:20px;
}

/* TITLE */
.cta-content h2{
  color:#fff;
  font-size:50px;
  line-height:1.15;
  font-weight:800;
  margin-bottom:45px;
}

/* BUTTON */
.cta-btn{
  display:inline-block;
    background: #1e0876;
    color: #FFFFFF;
  text-decoration:none;
  padding:15px 30px;
  font-size:20px;
  font-weight:700;
  transition:0.3s;
}

.cta-btn:hover{
 background: #1e0876;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(122, 62, 240, 0.25);

}

/* RESPONSIVE */
@media(max-width:991px){

  .cta-section{
    padding:100px 0;
  }

  .cta-content h5{
    font-size:28px;
  }

  .cta-content h2{
    font-size:60px;
  }

  .cta-btn{
    font-size:22px;
    padding:18px 40px;
  }
}

@media(max-width:768px){

  .cta-section{
    padding:80px 0;
  }

  .cta-content h5{
    font-size:22px;
  }

  .cta-content h2{
    font-size:40px;
  }

  .cta-btn{
    font-size:18px;
    padding:15px 30px;
  }
}


/* =========================
   COUNTER PARALLAX SECTION
========================= */

.counter-section{
  position:relative;

  /* PARALLAX EFFECT */
  background:
linear-gradient(
   90deg,
   rgba(11,27,94,0.92) 0%,
   rgba(122,62,240,0.82) 50%,
   rgba(255,77,141,0.72) 100%
),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600');

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  background-attachment:fixed;

  padding:120px 0;
  overflow:hidden;
}

/* DARK OVERLAY */
.counter-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}

/* COUNTER BOX */
.counter-box{
  position:relative;
  z-index:2;
}

/* ICON DIAMOND */
.counter-icon{
     width: 90px;
    height: 90px;
  background:#FF4D8D;;
  margin:0 auto 40px;
  transform:rotate(45deg);

  display:flex;
  align-items:center;
  justify-content:center;

  transition:0.4s;
}

.counter-box:hover .counter-icon{
  transform:rotate(45deg) scale(1.08);
  color:#FFFFFF;
}

/* ICON */
.counter-icon i{
  color:#fff;
  font-size:52px;
  transform:rotate(-45deg);
}

/* NUMBER */
.counter-number{
  color:#fff;
  font-size:72px;
  font-weight:800;
  margin-bottom:10px;
}

/* TITLE */
.counter-box h4{
 color:#E9E9FF;
  font-size:42px;
  font-weight:700;
  margin-bottom:20px;
}

/* SMALL LINE */
.counter-line{
  width:80px;
  height:4px;
background:rgba(255,255,255,0.15);
  margin:auto;
}

/* RESPONSIVE */
@media(max-width:991px){

  .counter-section{
    padding:90px 0;
    background-attachment:scroll;
  }

  .counter-icon{
    width:110px;
    height:110px;
  }

  .counter-icon i{
    font-size:42px;
  }

  .counter-number{
    font-size:56px;
  }

  .counter-box h4{
    font-size:32px;
  }
}

@media(max-width:768px){

  .counter-section{
    padding:70px 0;
  }

  .counter-box{
    margin-bottom:30px;
  }

  .counter-icon{
    width:90px;
    height:90px;
    margin-bottom:30px;
  }

  .counter-icon i{
    font-size:34px;
  }

  .counter-number{
    font-size:42px;
  }

  .counter-box h4{
    font-size:24px;
  }

  .counter-line{
    width:60px;
  }
}


/* =========================
   PROJECTS SECTION
========================= */

.projects-section{
  background:#FFFFFF;
  padding:70px 0;
}

/* TITLE */
.section-title{
  margin-bottom:40px;
}

.section-title h5{
  color:#7A3EF0;
  font-size:18px;
  font-weight:700;
  margin-bottom:8px;
}

.section-title h2{
  color:#0B1B5E;
  font-size:42px;
  font-weight:800;
  margin-bottom:14px;
}

.title-line{
  width:120px;
  height:3px;
background: linear-gradient(
   90deg,
   #7A3EF0,
   #FF4D8D
);
  margin:auto;
  position:relative;
}

.title-line::before,
.title-line::after{
  content:"";
  width:7px;
  height:7px;
 background: linear-gradient(
   90deg,
   #7A3EF0,
   #FF4D8D
);
  border-radius:50%;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
}

.title-line::before{
  left:0;
}

.title-line::after{
  right:0;
}

/* FILTER */
.project-filter{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:35px;
}

.filter-btn{
  border:none;
background:#FFFFFF;

border:1px solid #ECEBFF;

color:#0B1B5E;
  padding:12px 28px;
  font-size:14px;
  font-weight:700;
  transition:0.3s;
}

.filter-btn.active,
.filter-btn:hover{
 background:#1e0876;

color:#FFFFFF;
}

/* CARD */
.project-card{
  position:relative;
  overflow:hidden;
}

.project-card img{
  width:100%;
  height:280px;
  object-fit:cover;
  transition:0.4s;
  border-radius:18px;
}

.project-card:hover img{
 transform:scale(1.08);
}

/* OVERLAY */
.project-overlay{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  background:rgba(255,255,255,0.82);
  backdrop-filter:blur(3px);
  padding:22px 26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-radius:8px;
}

/* TEXT */
.project-overlay span{
color:#7A3EF0;
  font-size:16px;
  font-weight:700;
  display:block;
  margin-bottom:6px;
}

.project-overlay h3{
color:#0B1B5E;
  font-size:25px;
  font-weight:800;
  margin:0;
  line-height:1.2;
}

/* ICON BOX */
.project-overlay a{
  min-width:72px;
  height:72px;
  background:linear-gradient(
   135deg,
   #7A3EF0,
   #9333EA
);

color:#FFFFFF;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:26px;
  border-radius:16px;
  transition:0.3s;
}

.project-overlay a:hover{
 background:linear-gradient(
   135deg,
   #FF4D8D,
   #7A3EF0
);
}

/* RESPONSIVE */
@media(max-width:991px){

  .section-title h2{
    font-size:34px;
  }

  .project-overlay h3{
    font-size:26px;
  }

  .project-card img{
    height:240px;
  }

  .project-overlay a{
    min-width:60px;
    height:60px;
    font-size:22px;
  }
}

@media(max-width:768px){

  .projects-section{
    padding:50px 0;
  }

  .section-title h5{
    font-size:16px;
  }

  .section-title h2{
    font-size:28px;
  }

  .filter-btn{
    padding:10px 18px;
    font-size:12px;
  }

  .project-card img{
    height:220px;
  }

  .project-overlay{
    left:12px;
    right:12px;
    bottom:12px;
    padding:16px 18px;
  }

  .project-overlay span{
    font-size:13px;
  }

  .project-overlay h3{
    font-size:20px;
  }

  .project-overlay a{
    min-width:50px;
    height:50px;
    font-size:18px;
    border-radius:12px;
  }
}

/* =========================
   BLOG SECTION
========================= */

.blog-section{
  background:#FFFFFF;
  padding:70px 0;
}

/* TITLE */
.section-title{
  margin-bottom:50px;
}

.section-title h5{
  color:#7A3EF0;
  font-size:18px;
  font-weight:500;
  margin-bottom:8px;
}

.section-title h2{
  color:#0B1B5E;
  font-size:34px;
  font-weight:700;
  margin-bottom:15px;
}

.title-line{
  width:120px;
  height:3px;
background: linear-gradient(
   90deg,
   #7A3EF0,
   #FF4D8D
);
  margin:auto;
  position:relative;
}

.title-line::before,
.title-line::after{
  content:"";
  width:8px;
  height:8px;
background: linear-gradient(
   90deg,
   #7A3EF0,
   #FF4D8D
);
  border-radius:50%;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
}

.title-line::before{
  left:0;
}

.title-line::after{
  right:0;
}

/* BLOG CARD */
.blog-card{
  background:#FFFFFF;

border:1px solid #ECEBFF;

box-shadow:
   0 8px 25px rgba(0,0,0,0.05);
  overflow:hidden;
  transition:0.3s;
  box-shadow:0 4px 15px rgba(0,0,0,0.05);
  height:100%;
}

.blog-card:hover{
  transform:translateY(-10px);

box-shadow:
   0 20px 40px rgba(122,62,240,0.18);
}

/* IMAGE */
.blog-img{
  position:relative;
  overflow:hidden;
  border-radius:18px 18px 0 0;
}

.blog-img img{
  width:100%;
  height:210px;
  object-fit:cover;
  transition:0.4s;
}

.blog-card:hover .blog-img img{
  transform:scale(1.08);
}

/* DATE BOX */
.blog-date{
  width:75px;
  height:75px;
 background:linear-gradient(
   135deg,
   #7A3EF0,
   #9333EA
);

color:#FFFFFF;
  position:absolute;
  top:18px;
  left:18px;
  transform:rotate(45deg);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}

.blog-date span,
.blog-date p{
  transform:rotate(-45deg);
  color:#fff;
  font-weight:700;
}

.blog-date span{
  font-size:16px;
  line-height:1;
}

.blog-date p{
  font-size:14px;
  margin:0;
}

/* CONTENT */
.blog-content{
  padding:22px;
}

/* CATEGORY */
.blog-category{
  display:inline-block;
 background:linear-gradient(
   90deg,
   #7A3EF0,
   #FF4D8D
);

color:#FFFFFF;
  padding:7px 12px;
  text-decoration:none;
  font-size:13px;
  font-weight:600;
  margin-bottom:18px;
  transition:0.3s;
}

.blog-category:hover{
  background:#07185c;
}

/* TITLE */
.blog-content h3{
  margin-bottom:18px;
  border-bottom:1px solid #ddd;
  padding-bottom:18px;
}

.blog-content h3 a{
  color:#0B1B5E;
  text-decoration:none;
  font-size:20px;
  line-height:1.4;
  font-weight:600;
  transition:0.3s;
}

.blog-content h3 a:hover{
  color:#7A3EF0;
}

/* META */
.blog-meta{
  display:flex;
  align-items:center;
  gap:10px;
}

.blog-meta i{
color:#7A3EF0;
  font-size:18px;
}

.blog-meta span{
color:#5F6475;  font-size:14px;
}

/* RESPONSIVE */
@media(max-width:991px){

  .section-title h2{
    font-size:30px;
  }

  .blog-content h3 a{
    font-size:18px;
  }
}

@media(max-width:768px){

  .blog-section{
    padding:50px 0;
  }

  .section-title{
    margin-bottom:35px;
  }

  .section-title h5{
    font-size:16px;
  }

  .section-title h2{
    font-size:26px;
  }

  .title-line{
    width:90px;
  }

  .blog-img img{
    height:190px;
  }

  .blog-date{
    width:65px;
    height:65px;
  }

  .blog-date span{
    font-size:14px;
  }

  .blog-date p{
    font-size:12px;
  }

  .blog-content{
    padding:18px;
  }

  .blog-content h3 a{
    font-size:17px;
  }

  .blog-category{
    font-size:12px;
    padding:6px 10px;
  }

  .blog-meta i{
    font-size:16px;
  }

  .blog-meta span{
    font-size:13px;
  }
}
/* =========================
   CLIENTS SECTION
========================= */

.clients-section{
  background:#f4f4f4;
  padding:100px 0;
  overflow:hidden;
}

/* TITLE */
.section-title{
  margin-bottom:70px;
}

.section-title h5{
  color:#7A3EF0;
  font-size:28px;
  font-weight:700;
  margin-bottom:10px;
}

.section-title h2{
  color:#0B1B5E;
  font-size:70px;
  font-weight:800;
  margin-bottom:20px;
}

.title-line{
  width:220px;
  height:3px;
background: linear-gradient(
   90deg,
   #7A3EF0,
   #FF4D8D
);  margin:auto;
  position:relative;
}

.title-line::before,
.title-line::after{
  content:"";
  width:10px;
  height:10px;
  background: linear-gradient(
   90deg,
   #7A3EF0,
   #FF4D8D
);
  border-radius:50%;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
}

.title-line::before{
  left:0;
}

.title-line::after{
  right:0;
}

/* SLIDER */
.client-slider{
  overflow:hidden;
  position:relative;
}

/* TRACK */
.client-track{
  display:flex;
  width:calc(250px * 10);
  animation:scroll 20s linear infinite;
}

/* CLIENT BOX */
.client-box{
  width:250px;
  height:180px;
  background:#fff;
  margin:0 15px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  transition:0.3s;
  flex-shrink:0;
}

.client-box:hover{
  transform:translateY(-8px);
}

.client-box img{
  
  max-width:150px;
  max-height:80px;
  object-fit:contain;
}

.client-box:hover img{
    transform:scale(1.05);

}

/* ANIMATION */
@keyframes scroll{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(calc(-250px * 5));
  }
}

/* RESPONSIVE */
@media(max-width:991px){

  .section-title h2{
    font-size:52px;
  }

  .client-box{
    width:220px;
    height:150px;
  }

  .client-box img{
    max-width:120px;
  }
}

@media(max-width:768px){

  .clients-section{
    padding:70px 0;
  }

  .section-title{
    margin-bottom:50px;
  }

  .section-title h5{
    font-size:22px;
  }

  .section-title h2{
    font-size:40px;
  }

  .title-line{
    width:160px;
  }

  .client-box{
    width:180px;
    height:130px;
  }

  .client-box img{
    max-width:100px;
    max-height:55px;
  }
}

















/* =========================
   NEWSLETTER SECTION
========================= */

.newsletter-section{
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('./images/Subscribe.jpg');
  background-size:cover;
  background-position:center;
  padding:30px 67px;
}

.newsletter-content h2{
  color:#fff;
  font-size:30px;
  font-weight:800;
  margin-bottom:12px;
}

.newsletter-content p{
  color:#fff;
  font-size:16px;
}

/* FORM */
.newsletter-form{
  background:#fff;
  padding:5px;
  display:flex;
  align-items:center;
}

.newsletter-form input{
  width:100%;
  border:none;
  outline:none;
  padding:20px 25px;
  font-size:20px;
}

.newsletter-form button{
background:#1e0876;
  color:#fff;
  border:none;
  padding:15px 30px;
  font-size:20px;
  font-weight:700;
  transition:0.3s;
}

.newsletter-form button:hover{
  background: #1e0876;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(122, 62, 240, 0.25);
}

/* =========================
   FOOTER
========================= */

.footer-section{
 background: linear-gradient(
   90deg,
   #0B1B5E 0%,
   #1E1B8F 45%,
   #7A3EF0 100%
);
   color:#FFFFFF;
    font-weight:700;
  padding-top:70px;
 
}

/* FOOTER TOP */
.footer-section .container{
  padding-bottom:50px;
}

/* LOGO */
.footer-logo img{
  width:100px;
  margin-bottom:20px;
}

/* TEXT */
.footer-text{
  font-size:16px;
  line-height:1.9;
  margin-bottom:30px;
  color:#E9E9FF;
    font-weight:700;
}

/* SOCIAL */
.footer-social{
  display:flex;
  gap:15px;
}

.footer-social a{
  width:42px;
  height:42px;
background:rgba(255,255,255,0.12);

color:#FFFFFF;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  text-decoration:none;
  font-size:16px;
  transition:0.3s ease;
}

.footer-social a:hover{
  background:linear-gradient(
   135deg,
   #FF4D8D,
   #7A3EF0
);

color:#FFFFFF;
  transform:translateY(-3px);
}

/* WIDGET TITLE */
.footer-widget h3{
  color:#FFFFFF;
  font-size:24px;
  font-weight:600;
  margin-bottom:30px;
  position:relative;
}

.footer-widget h3::after{
  content:"";
  width:70px;
  height:3px;
  background:#ff6b2d;
  position:absolute;
  left:0;
  bottom:-10px;
}

/* LIST */
.footer-widget ul{
  padding:0;
  margin:0;
  list-style:none;
}

.footer-widget ul li{
  margin-bottom:15px;
}

.footer-widget ul li a{
color:#E9E9FF;  text-decoration:none;
  font-size:16px;
  transition:0.3s ease;
}

.footer-widget ul li a:hover{

color:#FF4D8D;
    transform:translateY(-4px);
  padding-left:6px;
}

.footer-widget ul li a i{
     background:#0F2B85;
color:#E9E9FF;
  margin-right:10px;
}

/* CONTACT INFO */
.contact-info li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-size:15px;
  line-height:1.8;
  color:#dcdcdc;
}

.contact-info li i{
 color:#FF4D8D;
  margin-top:5px;
  min-width:18px;
}

/* COPYRIGHT */
.footer-bottom{
background: linear-gradient(
   90deg,
   #7A3EF0,
   #FF4D8D
);  text-align:center;
  padding:18px 10px;
}

.footer-bottom p{
  color:#fff;
  font-size:16px;
  margin:0;
  font-weight:500;
}

/* RESPONSIVE */
@media(max-width:991px){

  .footer-section{
    padding-top:60px;
  }

  .footer-widget{
    margin-bottom:30px;
  }

  .footer-widget h3{
    font-size:22px;
  }

  .footer-text{
    font-size:15px;
  }
}

@media(max-width:768px){

  .footer-section{
    text-align:left;
    padding-top:50px;
  }

  .footer-section .container{
    padding-bottom:30px;
  }

  .footer-widget{
    margin-bottom:40px;
  }

  .footer-widget h3{
    font-size:20px;
  }

  .footer-text,
  .footer-widget ul li a,
  .contact-info li{
    font-size:15px;
  }

  .footer-social a{
    width:40px;
    height:40px;
    font-size:15px;
  }

  .footer-bottom p{
    font-size:14px;
    line-height:1.6;
  }
}