@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Sora:wght@600;700&display=swap');

:root {
  --black1: #070501;
  --black2: #1A1A1A;
  --primary-color: #F4A419;
  --title-color: #161515;
  --white: #fff;
  --gradient: linear-gradient(180deg, var(--yellow) 0%, #FDD503 100%);

  --clamp12: clamp(11px, 0.700vw, 11px);
  --clamp14: clamp(12px, 0.72916vw, 14px);
  --clamp15: clamp(13px, 0.78125vw, 15px);
  --clamp16: clamp(14px, 0.8333vw, 16px);
  --calmp17: clamp(14px, 0.88541vw, 17px);
  --clamp18: clamp(14px, 0.9375vw, 18px);
  --clamp20: clamp(16px, 1.0416vw, 20px);
  --clamp22: clamp(16px, 1.145vw, 22px);
  --clamp24: clamp(17px, 1.25vw, 24px);
  --clamp25: clamp(18px, 1.3541vw, 26px);
  --clamp26: clamp(20px, 1.3541vw, 26px);
  --clamp28: clamp(16px, 1.4583vw, 28px);
  --clamp30: clamp(20px, 1.5625vw, 30px);
  --clamp32: clamp(20px, 1.666vw, 32px);
  --clamp34: clamp(20px, 1.770vw, 34px);
  --clamp35: clamp(22px, 1.822vw, 35px);
  --clamp36: clamp(25px, 1.875vw, 36px);
  --clamp38: clamp(25px, 1.979vw, 38px);
  --clamp40: clamp(26px, 2.083vw, 40px);
  --clamp42: clamp(26px, 2.1875vw, 42px);
  --clamp44: clamp(26px, 2.2916vw, 44px);
  --clamp45: clamp(26px, 2.3vw, 45px);
  --clamp48: clamp(26px, 2.5vw, 48px);
  --clamp50: clamp(28px, 2.864583vw, 50px);
  --clamp55: clamp(28px, 2.864583vw, 55px);
  --clamp58: clamp(28px, 3.02083vw, 58px);
  --clamp60: clamp(30px, 3.125vw, 60px);
  --clamp64: clamp(30px, 3.333vw, 64px);
  --clamp75: clamp(35px, 3.90625vw, 75px);
  --clamp78: clamp(30px, 4.0625vw, 78px);
  --clamp80: clamp(30px, 4.1666vw, 80px);
  --clamp82: clamp(30px, 4.27083vw, 82px);
  --clamp84: clamp(25px, 4.375vw, 84px);
  --clamp100: clamp(30px, 5.2083vw, 100px);
  --clamp120: clamp(40px, 6.25vw, 120px);
  --borderWidth: 3px;
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  background: #0d0e12;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.mainbody {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #000000;
  min-height: 100vh;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
  position: relative;
}

/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.5s ease-out;
}

.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #00bfff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#content {
  opacity: 0;
  transition: opacity 0.8s ease-in;
}

#content.show {
  opacity: 1;
}

/* Glow Border Animations */
.box {
  border: 2px solid transparent;
  animation: gradientBorder 5s linear infinite;
  border-radius: 50px;
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
  background: linear-gradient(to right, #120020, #120020) content-box,
  conic-gradient(
      from var(--angle),
      #120020 0deg,
      #f36fff 53.3deg,
      #268aff 90.46deg,
      #52eaea 126.24deg,
      #120020 178.82deg,
      #120020 360deg
    )
    border-box;
}

.boximage {
  border: 2px solid transparent;
  animation: gradientBorder 5s linear infinite;
  border-radius: 100px;
  height: 150px;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #120020, #120020) content-box,
  conic-gradient(
      from var(--angle),
      #120020 0deg,
      #f36fff 53.3deg,
      #268aff 90.46deg,
      #52eaea 126.24deg,
      #120020 178.82deg,
      #120020 360deg
    )
    border-box;
}

@keyframes gradientBorder {
  from {
    --angle: 0turn;
  }
  to {
    --angle: 1turn;
  }
}

@property --angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0turn;
}

/* Slider Section */
.slidersection {
  height: 240px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.slidersection:before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 100px;
  width: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.00) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.slidersection .slick-slide {
  height: 240px;
}

.slidersection img {
  width: 100% !important;
  height: 240px !important;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .slidersection, .slidersection .slick-slide {
    height: 340px;
  }
  .slidersection img {
    height: 340px !important;
  }
}

@media (min-width: 992px) {
  .slidersection, .slidersection .slick-slide {
    height: 420px;
  }
  .slidersection img {
    height: 420px !important;
  }
}

/* Slider 2 */
.slider2 {
  width: 100%;
  height: 500px;
}
.slider2 img {
  width: 100%;
  height: 500px;
}

/* Profile Section */
.profile {
  width: 100%;
  height: auto;
  background: transparent;
  border-radius: 100px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-top: 20px;
  padding: 5px;
}

.profileimg {
  height: 150px;
  overflow: hidden;
  width: 150px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profileimg img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  padding: 4px;
  border: solid 3px transparent;
  border-radius: 100px;
  display: block;
}

.profiledetails h2 {
  font-size: 32px;
  font-weight: 700 !important;
  color: #fff;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.profiledetails p {
  font-size: 16px;
  color: #b4b4b4;
  font-weight: 400 !important;
  max-width: 600px;
  margin: auto;
  margin-bottom: 15px;
}

/* Links Buttons */
.linksbtn {
  padding: 15px 15px;
  margin: 0 auto;
  max-width: 950px;
}

.linksbtn .row {
  margin: 0 auto;
}

.linksbtn a {
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50px;
  padding: 10px;
  font-size: var(--clamp16);
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  height: 65px;
  width: 65px;
  margin-bottom: 18px;
  text-decoration: none;
}

.linksbtn a:hover {
  background: var(--title-color);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.linksbtn a i {
  font-size: 28px;
  color: var(--white);
  -webkit-animation: rotate 5s normal linear infinite;
  animation: rotate 5s normal linear infinite;
}

@keyframes rotate {
  0% { transform: rotate3d(0, 0, 1, 0deg); }
  25% { transform: rotate3d(0, 0, 1, 20deg); }
  50% { transform: rotate3d(0, 0, 1, -20deg); }
  75% { transform: rotate3d(0, 0, 1, 20deg); }
  100% { transform: rotate3d(0, 0, 1, 0deg); }
}

/* CTA Buttons */
.createbtn {
  border-radius: 50px;
}

.createbtn a {
  background: #222;
  height: 46px;
  line-height: 46px;
  width: 100%;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.createbtn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.15);
}

/* About Us */
.aboutus {
  padding: 25px 20px;
  background-color: rgb(24 22 22 / 90%);
  width: 95%;
  max-width: 1100px;
  margin: 25px auto;
  border-radius: 16px;
}

.aboutus p {
  font-size: var(--clamp16);
  color: #ddd;
  font-weight: 400;
  line-height: 1.7;
  margin-top: 10px;
  opacity: 0.9;
}

section.aboutus h3 {
  color: #ffffff !important;
  opacity: 1 !important;
  font-size: var(--clamp22);
  margin-top: 20px;
}

/* Title Section */
.titlesection {
  margin-top: 25px !important;
  margin-bottom: 15px;
}

.titlesection h2 {
  font-size: var(--clamp32);
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services / Initiatives */
.services {
  padding: 15px 15px;
  margin: 0 auto;
  max-width: 1140px;
}

.servicebox {
  background: rgb(24 22 22 / 90%);
  border: solid 1px #222;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.servicebox:hover {
  transform: translateY(-4px);
  border-color: #444;
}

.servicebox h1 {
  font-size: var(--clamp35);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.servicebox h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.servicebox p {
  font-size: 14px;
  color: #ccc;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.serviceimg {
  height: 220px;
  background-color: #151515;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.serviceimg a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.serviceimg img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  transition: transform 0.4s ease;
}

.servicebox:hover .serviceimg img {
  transform: scale(1.04);
}

.service2 {
  border: solid 1px #161515;
  padding: 10px;
  border-radius: 0px !important;
}

.service2 .serviceimg {
  height: 100px;
}

.service2 h3 {
  font-size: var(--clamp18);
}

.service2 a {
  font-size: 12px !important;
}

/* Theme Button */
.themebtn button {
  background: #222;
  color: var(--white);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: var(--clamp16);
  font-weight: 600;
  border: none;
  cursor: pointer;
  height: auto;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.themebtn a {
  color: var(--white);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: var(--clamp16);
  font-weight: 600;
  border: none;
  cursor: pointer;
  height: 42px;
  line-height: 42px;
  text-decoration: none;
  text-align: center;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
  width: 100%;
  display: block;
  text-transform: uppercase;
}

.themebtn a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Gallery */
.grid-gallery {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 15px;
}

.grid-gallery > .imgbox {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background: #181818;
}

.grid-gallery > .imgbox a {
  display: block;
  width: 100%;
  height: 100%;
}

.grid-gallery > .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.grid-gallery > .imgbox img:hover {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .grid-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .grid-gallery > .imgbox {
    height: 230px;
  }
}

@media (min-width: 1200px) {
  .grid-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .grid-gallery > .imgbox {
    height: 260px;
  }
}

/* Video Section */
.videos {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 30px auto;
  padding: 0 15px;
}

.videos iframe {
  background: #222;
  padding: 5px;
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 250px;
  max-height: 450px;
  margin: 0 auto;
  border: 1px solid #333;
}

/* Contact Form */
.contactform {
  padding: 20px 15px;
  max-width: 800px;
  margin: 0 auto;
}

.contactform input[type="text"],
.contactform input[type="email"],
.contactform input[type="mobile"] {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #333;
  font-size: var(--clamp16);
  margin-bottom: 15px;
  background-color: #111;
  color: #fff;
  box-shadow: none;
  transition: border-color 0.3s ease;
}

.contactform input[type="text"]:focus,
.contactform input[type="email"]:focus,
.contactform input[type="mobile"]:focus {
  border-color: var(--primary-color);
  outline: none;
  background-color: #181818;
}

.contactform textarea,
.contactform textarea:focus {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #333;
  font-size: var(--clamp16);
  margin-bottom: 15px;
  background-color: #111;
  color: #fff;
  box-shadow: none;
  resize: vertical;
  height: 140px;
}

.contactform textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  background-color: #181818;
}

.contactform input::placeholder,
.contactform textarea::placeholder {
  color: #888;
  font-size: var(--clamp16);
}

/* QR Code */
.qrcode {
  padding: 20px 15px;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.qrcodeimg {
  background-color: #222;
  width: 220px;
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  padding: 8px;
}

.qrcodeimg img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  display: block;
}

.qrcode p {
  color: #bbb;
  text-align: center;
  width: 80%;
  margin: 15px auto 0 auto;
  font-size: 15px;
}

/* Branding */
.branding {
  padding: 20px 15px !important;
  text-align: center;
  margin-top: 30px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.thebrand h5 {
  color: white;
  font-size: 14px;
  opacity: 0.5;
}

.success {
  position: fixed;
  top: 20px;
  background: white;
  height: auto;
  width: 80%;
  max-width: 500px;
  z-index: 9999;
  text-align: center;
  font-weight: 700;
  color: #222;
  padding: 10px 20px;
  border-radius: 50px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

.savecontact button {
  color: #fff;
  border: none;
  padding: 5px 0;
  background: transparent;
  width: 100%;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}
