/* Laira Regular */
@font-face {
  font-family: 'Laira';
  src: url('./Assets/Fonts/LairaRegular.woff2') format('woff2'),
       url('./Assets/Fonts/LairaRegular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* Laira Italic */
@font-face {
  font-family: 'Laira Italic';
  src: url('./Assets/Fonts/LairaItalic.woff2') format('woff2'),
       url('./Assets/Fonts/LairaItalic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
}
html, body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
/* ============================
   GLOBAL SETTINGS
============================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
  background-color: #000;
  color: #fff;
}

/* ============================
   NAVBAR
============================ */
.navbar {
  width: 100%;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #0d0d0d;
}

.navbar .container,
.navbar .container-fluid {
  max-width: 100%;
  margin: 0 !important;
  padding: 0 16px !important;
}

.navbar-brand {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff !important;
  text-transform: uppercase;
}

.navbar-toggler {
  border: none;
  outline: none;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  width: 30px;
  height: 3px;
  background-color: #ff004f;
  display: block;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #ff004f;
  left: 0;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

/* ============================
   HERO / BANNER SECTION
============================ */
.banner-section-bg-container {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-section-bg-container::after {
  content: "";
  position: absolute;
  inset: 0;
}

.banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.banner-caption {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff004f;
  letter-spacing: 1px;
}

/* ============================
   COMMON SECTIONS
============================ */
.section {
  padding: 80px 20px;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #ff004f;
}

.section p {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: #ccc;
}

/* ============================
   FOOTER
============================ */
.footer {
  padding: 30px 0;
  background: #0d0d0d;
  text-align: center;
  color: #aaa;
  font-size: 14px;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 768px) {
  .navbar-brand {
    font-size: 18px;
  }

  .banner-caption {
    font-size: 1.8rem;
  }

  .section {
    padding: 60px 10px;
  }
}

@media (max-width: 480px) {
  .banner-caption {
    font-size: 1.4rem;
  }
}
/* Headings */
.banner-heading,
.connect-title,
.service-title,
.contact-title {
  font-family: 'Bebas Neue', 'Laila', 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.05;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hero sizing */
.banner-heading {
  color: #ff405d;
  font-size: clamp(2.4rem, 6vw, 5.0rem);
  margin: 0;
  text-align: center;
}

/* Prevent link color bleed for icons */
a, a:visited { color: inherit; }
.social-box svg,
.social-box i,
.icon-container svg {
  fill: #ff4655 !important;
  color: #ff4655 !important;
}


/* Offcanvas Menu for Bootstrap 4.5.2 */
  .navbar .offcanvas-collapse {
  position: fixed;
  top: 56px;
  bottom: 0;
  left: 100%;
  width: 100%;
  padding: 1rem;
  background-color: #000;
  transition: transform 0.3s ease-in-out;
}

.offcanvas-collapse.open {
  transform: translateX(-100%);
}

  /* Hide hamburger on desktop */
  @media (min-width: 992px) {
    .offcanvas-collapse {
    position: static;
    width: auto;
    background: none;
    transform: none;
    padding: 0;
}
#navbarSideCollapse {
    display: none;
}
.navbar-brand{
    font-family: 'laira', sans-serif;
    font-size: 30px;
    color: #ff405d;
}
    /* ADD THESE LINES FOR THE DESKTOP FROSTED LOOK */
    .navbar {
        background: rgba(0, 0, 0, 0.8); /* Transparent black */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}
  /* Dropdown styling inside offcanvas */
  .dropdown-menu {
    border: none;
  }
.mobile-brand{
    font-family: 'laira', sans-serif;
    font-size: 35px;
    color: #ff405d;
    text-align: center;
    font-style: italic;
    padding-right: 25px;
}
.mobile-text{
    font-family: 'laira', sans-serif;
    font-size: 20px;
    letter-spacing: 3px;
    font-weight: lighter;
    color: #ff405d;
}

/* Navbar link base style */
.navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 700;
    padding: 10px 15px;
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth color + scale */
    display: inline-block; /* Needed for scale */
}

/* Hover effect with higher specificity */
.navbar-dark .navbar-nav .nav-link:hover {
    color: #ff405d !important; /* Valorant red */
    transform: scale(1.1);
}
/* Underline effect */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #ff405d;
    transition: width 0.3s ease;
}
/* Black frosted navbar */
.navbar {
    background: rgba(0, 0, 0, 0.8); /* Mostly black but slightly transparent */
    backdrop-filter: blur(10px);    /* Blur the content behind */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

/* Navbar links */
.navbar-nav .nav-link {
    color: #ffffff;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ff405d; /* Valorant-style hover color */
}


/* Slide underline on hover */
.navbar-dark .navbar-nav .nav-link:hover::after {
    width: 100%;
}
/* Custom Hamburger */
.custom-toggler {
  border: none;
  background: transparent;
  outline: none;
  padding: 6px;
  position: relative;
  z-index: 1100;
}

.toggler-icon {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #ff405d;
  margin: 5px auto;
  border-radius: 2px;
  transition: all 0.4s ease;
}
.custom-toggler.active .toggler-icon:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.custom-toggler.active .toggler-icon:nth-child(2) {
  opacity: 0;
}
.custom-toggler.active .toggler-icon:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* Keep mobile brand fixed center (not moving down with collapse) */
@media (max-width: 991px) {
  .mobile-center-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
/* Fix desktop navbar links alignment */
@media (min-width: 992px) {
  .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    white-space: nowrap; /* prevent text wrapping like "About Us" */
  }

  .navbar-nav .nav-item {
    margin-left: 20px; /* spacing between items */
  }

  .navbar-nav .nav-link {
    display: inline-block;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.3px;
  }

  .navbar-nav .nav-link:hover {
    color: #ff405d; /* hover color match your theme */
  }
}

.banner-section-bg-container {
    height: 100vh;
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.69), 
        rgba(0, 0, 0, 0.795)
    ),
    url('Assets/battlefield-2042-soldier-4k-uhdpaper.com-459.1_a-thumbnail.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

/* Neon GFX sweep */
.banner-section-bg-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        rgba(255, 64, 93, 0.259) 0%,
        rgba(64, 210, 255, 0.089) 50%,
        rgba(36, 36, 36, 0.303) 100%
    );
    transform: rotate(25deg);
    animation: bg-sweep 5s linear infinite;
    pointer-events: none;
}

/* Sweep animation */
@keyframes bg-sweep {
    0% { transform: translateX(-100%) rotate(25deg); }
    100% { transform: translateX(100%) rotate(25deg); }
}

.banner-heading {
    font-family: 'Laira', sans-serif; /* Your chosen font */
    font-size: 5rem;
    color: #ff405d;
    display: inline-block;       /* Needed for transform */
    position: relative;
    animation: slide-up 1s ease-out forwards; /* Play once */
    text-align: center;          /* Center text horizontally */
}

/* Center parent container */
.banner-section {
    text-align: center;
}

/* Simple slide-up animation */
@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(50px); /* Start below */
    }
    100% {
        opacity: 1;
        transform: translateY(0);    /* End at normal position */
    }
}


@media (max-width: 768px) {
    .banner-heading{
        font-size: 40px;
    }
}
.banner-section-bg-container-2{
    height: 100vh;
    background-image: linear-gradient(
    rgba(0, 0, 0, 0.69), 
    rgba(0, 0, 0, 0.795)
  ),
  url('Assets/valorant-omen-bg.jpeg'); /* Optional: Add neon image or abstract swirl */
  background-size: cover;
  padding: 10px 0;
}
.banner-caption-2{
    font-family: 'laira', sans-serif;
    font-size: 50px;
    color: #ff405d;
    letter-spacing: 2px;
    text-align: left;
    margin: 50px;
}
.banner-description{
    font-family: 'poppins', sans-serif;
    font-size: 20px;
    color: #ffffff;
    letter-spacing: 1px;
    text-align: left;
    margin: 50px;
}
@media (max-width: 768px) {
    .banner-description{
        font-size: 16px;
        margin: 20px;
    }
}
.highlighted-text{
    color: #ff405d;
}
.text-left{
    margin-left: 50px;
}
.valorant-btn {
  display: inline-block;
  position: relative;
  background: #ff4655; /* Valorant red */
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 32px;
  border: none;
  border-radius: 0; /* sharp edges */
  overflow: hidden;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
}

.valorant-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.2;
  transform: skewX(-15deg);
  transition: all 0.5s ease;
}

.valorant-btn:hover::before {
  left: 100%;
}

.valorant-btn:hover {
  color: #fff;
  background: #e03a49; /* darker red on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 70, 85, 0.3);
}
/* Your existing animation */
.banner-section-bg-container-2 .banner-caption-2,
.banner-section-bg-container-2 .banner-description {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

/* Animate when class 'animate' is added */
.banner-section-bg-container-2.animate .banner-caption-2,
.banner-section-bg-container-2.animate .banner-description {
  opacity: 1;
  transform: translateY(0);
}

.banner-section-bg-container-3{
    height: 100vh;
    background-image: linear-gradient(
    rgba(0, 0, 0, 0.69), 
    rgba(0, 0, 0, 0.795)
  ),
  url('Assets/lol.jpeg'); /* Optional: Add neon image or abstract swirl */
  background-size: cover;
  padding: 10px 0;
}
.banner-caption-3{
    font-family: 'laira', sans-serif;
    font-size: 40px;
    color: #ff405d;
    letter-spacing: 2px;
    text-align: right;
    margin: 50px;
}
.banner-description-2{
    font-family: 'poppins', sans-serif;
    font-size: 20px;
    color: #ffffff;
    letter-spacing: 1px;
    text-align: right;
    margin: 50px;
}
.banner-section-bg-container-3 {
  background-color: rgb(21, 21, 21);
  color: #f5f5f5;
  padding: 100px 0;
}

.banner-caption-3 {
  font-size: 3rem;
  font-weight: 700;
  color: #ff005a; /* highlight color */
}

.highlighted-text {
  color: #ff005a;
}
.services-page-bg{
    background-color: #121212;
    height: 100vh;
}
@media (max-width: 768px) {
    .services-page-bg {
        height: auto;
    }
}
.service-title{
    font-family: 'laira', sans-serif;
    font-size: 70px;
    color: #ffffff;
    letter-spacing: 2px;
    padding-top: 70px;
}
.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 0 rgba(255, 64, 93, 0.8); /* Hard shadow */
    border: 1px solid rgba(255, 64, 93, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth scale + shadow */
}

/* Hover shimmer overlay */
.glass-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.25) 50%, 
        rgba(255, 255, 255, 0.1) 100%
    );
    transform: rotate(25deg);
    opacity: 0;
    pointer-events: none;
}

/* Hover effect: shimmer + scale + hard shadow */
.glass-card:hover {
    transform: translateY(-5px) translateX(3px) scale(1.05); /* Slight shift on X-axis */
    box-shadow: 0 4px 0 rgba(255, 64, 93, 0.8); /* Hard shadow, no blur */
}

.glass-card:hover::after {
    opacity: 1;
    animation: shimmer 1s linear forwards; /* Play shimmer once */
}

/* Shimmer animation */
@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(25deg); }
    100% { transform: translateX(100%) rotate(25deg); }
}


/* Inner text stays on top */
.sevice-description {
    position: relative;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #ffffff;
    letter-spacing: 1px;
    text-align: center;
}


.sevice-description{
    font-family: 'poppins', sans-serif;
    font-size: 16px;
    color: #ffffff;
    letter-spacing: 1px;
    text-align: center;
}
/* Icon Utility */
.icon-container {
  display: flex;           /* Use flexbox */
  justify-content: center; /* Center horizontally */
  align-items: center;     /* Center vertically */
  height: 100px;           /* Optional: set height for vertical centering */
}
.icons-styling{
    color: #ff405d;
}

/* Contact Form */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');


.contact-section {
    height: 100vh;
    background-image: linear-gradient(
    rgba(0, 0, 0, 0.69), 
    rgba(0, 0, 0, 0.795)
  ),
  url('Assets/contact-mage.jpeg'); /* Optional: Add neon image or abstract swirl */
  background-size: cover;
  padding: 10px 0;
}
.contact-container {
     width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-box {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 8px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    width: 100%;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-title {
    font-family: 'laira', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.contact-box .form-group {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.contact-box .form-control {
    background: rgba(14, 21, 29, 0.8);
    border: 2px solid #ff4655;
    border-radius: 0;
    color: #ffffff;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.contact-box .form-control:focus {
    background: rgba(14, 21, 29, 0.95);
    border-color: #ff4655;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 70, 85, 0.5), inset 0 0 10px rgba(255, 70, 85, 0.2);
    outline: none;
    transform: translateX(2px);
}

.contact-box .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-box textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-box .submit-btn {
    width: 100%;
    background: linear-gradient(90deg, #ff4655 0%, #ff4655 100%);
    border: none;
    border-radius: 0;
    color: #ffffff;
    font-family: 'laira', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 32px;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.contact-box .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.contact-box .submit-btn:hover {
    background: linear-gradient(90deg, #fd4556 0%, #fd4556 100%);
    transform: translateX(4px);
    box-shadow: -4px 4px 0 rgba(255, 70, 85, 0.4);
}

.contact-box .submit-btn:hover::before {
    left: 100%;
}

.contact-box .submit-btn:active {
    transform: translateX(2px);
    box-shadow: -2px 2px 0 rgba(255, 70, 85, 0.4);
}

/* Responsive adjustments */
/* Mobile devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .contact-container {
        max-width: 100%;
        padding: 15px;
    }
    
    .contact-box {
        padding: 30px 20px;
    }
    
    .contact-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .contact-box .form-control {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .contact-box .submit-btn {
        font-size: 1.6rem;
        padding: 10px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .contact-container {
        max-width: 500px;
    }
    
    .contact-box {
        padding: 40px 30px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .contact-container {
        max-width: 500px;
    }
    
    .contact-box {
        padding: 50px 40px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .contact-container {
        max-width: 500px;
    }
    
    .contact-box {
        padding: 50px 40px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .contact-container {
        max-width: 520px;
    }
}
.connect-section {
    height: 70vh;
    background-image: linear-gradient(
    rgba(0, 0, 0, 0.69), 
    rgba(0, 0, 0, 0.795)
  ),
  url('Assets/contact-mage.jpeg'); /* Optional: Add neon image or abstract swirl */
  background-size: cover;
  padding: 10px 0;
}

.connect-title {
    font-family: 'laira', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    letter-spacing: 3px;
    font-style: italic;
    margin-bottom: 0;
}

.text-red {
    color: #ff4655;
}

.social-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    max-width: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 3px solid #ff4655;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.social-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 70, 85, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-box i {
    font-size: 10px;
    color: #ff4655;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-box:hover {
    transform: translateY(-8px) translateX(4px);
    box-shadow: -8px 8px 0 rgba(255, 70, 85, 0.4);
    border-color: #ff4655;
}

.social-box:hover::before {
    opacity: 1;
}

.social-box:hover i {
    color: #ff4655;
    transform: scale(1.1);
}

.social-box:active {
    transform: translateY(-4px) translateX(2px);
    box-shadow: -4px 4px 0 rgba(255, 70, 85, 0.4);
}
/* Keep default styling for desktop and mobile */
.social-box i,
.social-box svg {
  width: 40px;
  height: 40px;
  font-size: 2rem;
  fill: #ff4655; /* Your original red */
  color: #ff4655; /* For Font Awesome icons */
  transition: transform 0.3s ease;
}

.social-box:hover i,
.social-box:hover svg {
  transform: scale(1.1);
}

/* 🧠 iPad-specific fix: only adjust sizing between 768px and 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
  .social-box i,
  .social-box svg {
    width: 50px;
    height: 50px;
    font-size: 2.4rem;
  }
}

/* Keep your red hover or border effect consistent */
.social-box {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #ff4655;
  border-radius: 8px;
  padding: 10px;
  transition: all 0.3s ease;
}


/* Responsive adjustments */
/* Mobile devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .connect-section {
        padding: 60px 0;
    }
    
    .connect-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .social-box {
        max-width: 90px;
    }
    
    .social-box i {
        font-size: 1.8rem;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .connect-title {
        font-size: 3rem;
    }
    
    .social-box {
        max-width: 100px;
    }
    
    .social-box i {
        font-size: 2rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .connect-title {
        font-size: 3.5rem;
    }
    
    .social-box {
        max-width: 110px;
    }
    
    .social-box i {
        font-size: 2.3rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .connect-title {
        font-size: 4rem;
    }
    
    .social-box {
        max-width: 120px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .connect-title {
        font-size: 4.5rem;
    }
    
    .social-box {
        max-width: 130px;
    }
    
    .social-box i {
        font-size: 2.8rem;
    }
}
.radio-group {
    border: 2px solid #ff4757;
    border-radius: 5px;
    padding: 20px;
    background-color: transparent;
}

.radio-group-label {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}

.radio-options {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ff4757;
    border-radius: 50%;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
    background-color: transparent;
}

.radio-option input[type="radio"]:checked {
    background-color: #ff4757;
    border-color: #ff4757;
}

.radio-option input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
}

.radio-option label {
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}

.radio-option:hover label {
    color: #ff4757;
}

/* Responsive for mobile */
@media (max-width: 600px) {
    .radio-options {
        flex-direction: column;
        gap: 15px;
    }
}
.team-page-section-bg{
    background-color: rgb(21, 21, 21);
}
.team-section-heading{
    font-family: 'laira', sans-serif;
    font-size: 50px;
    color: #ffffff;
    letter-spacing: 2px;
    padding-top: 20px;
}
.service-section-img{
    height: 340px;
    width: 380px;
    box-shadow: #ff405d -10px 10px 0px;
    margin-right: 20px;
}
.team-section-description{
    font-family: 'poppins', sans-serif;
    color: #ffffff;
    font-size: 16px;
}
.team-section{
    padding-bottom: 150px;
}
.service-section{
    padding-bottom: 150px;
}
.team-social-icons {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  flex-wrap: wrap;
}

.team-social-icons .social-icon {
  color: #ff004c; /* Match your theme color */
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.team-social-icons .social-icon:hover {
  color: #fff;
  transform: scale(1.15);
}

/* Center icons on mobile */
@media (max-width: 768px) {
  .team-social-icons {
    justify-content: center;
  }
}
/* ---------- TEAM PAGE ---------- */
.team-page-heading {
  font-family: 'laira', sans-serif;
  font-size: 4rem;
  letter-spacing: 2px;
  color: #fff;
}

.team-section-heading {
  font-family: laira;
  font-size: rem;
  color: #fff;
}

.team-section-description {
  color: #cfcfcf;
  line-height: 1.7;
  font-size: 1rem;
}

.service-section-img {
  border-radius: 16px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.service-section-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 59, 59, 0.2);
}

.team-social-icons {
  margin-top: 15px;
}

.social-icon {
  color: #ff3b3b;
  font-size: 1.6rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
  color: #fff;
}
