@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

/* ========== CSS VARIABLES ========== */
:root {
  --primary-color: #2a4c8f;
  --primary-dark: #1e3a6d;
  --primary-light: #4a7bb5;
  --primary-soft: #e8f0fa;
  --secondary: #2c3e50;
  --secondary-color:#d4af37;
  --dark: #1a2a32;
  --light: #fef9ef;
  --gray: #6c757d;
  --white: #ffffff;
  --active-color: #000000;
  --shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
  --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
}

body {
  position: relative;
  padding: 0;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #4a5568;
}
img {
  max-width: 100%;
}
h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  color: #000;
  font-weight: 800;
}
a {
  color: inherit;
  text-decoration: none !important;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #27292e; 
  border-radius: 50px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #d5b03a; 
}

a:hover,
a:focus {
  text-decoration: none;
  color: inherit;
}
.main-wrapper { margin: 85px 0 0 0; }

/* Annimation */

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes floatSlow {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes shine {
  0% {
    background-position: -100% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(42, 76, 143, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(42, 76, 143, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(42, 76, 143, 0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fadeUp {
  animation: fadeUp 0.8s ease forwards;
}

.animate-slideLeft {
  animation: slideInLeft 0.8s ease forwards;
}

.animate-slideRight {
  animation: slideInRight 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.delay-2 {
  animation-delay: 0.2s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.delay-3 {
  animation-delay: 0.35s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.delay-4 {
  animation-delay: 0.5s;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
}

header .navbar .nav-link {
  color: var(--primary-color);
  font-weight: 600;
}
header .navbar .nav-link.active {
  color: var(--active-color) !important;
}
header .navbar .nav-link:hover{color: var(--active-color);}
header .navbar .navbar-collapse .nav-item {
  margin-right: 25px;
}


/* ========== HERO SECTION - ATTRACTIVE BANNER ========== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #f8fafd 0%, #ffffff 50%, #f0f4fa 100%);
  overflow: hidden;
  padding: 60px 0 80px;
}

/* Animated background elements */
.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(42, 76, 143, 0.05) 0%,
    rgba(42, 76, 143, 0) 70%
  );
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(42, 76, 143, 0.03) 0%,
    rgba(42, 76, 143, 0) 70%
  );
  border-radius: 50%;
  animation: float 12s ease-in-out infinite reverse;
  z-index: 0;
}

/* Floating decorative shapes */
.shape-dot {
  position: absolute;
  background: linear-gradient(90deg, #d4af37, #f5e6a7);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.shape-dot-1 {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 5%;
  animation: float 8s ease-in-out infinite;
}

.shape-dot-2 {
  width: 100px;
  height: 100px;
  bottom: 10%;
  right: 8%;
  background: linear-gradient(90deg, #d4af37, #f5e6a7);
  opacity: 0.08;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    #091c41 0%,
    var(--primary-light) 50%,
    #0e1529 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.tagline::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 60px;
  height: 3px;
     background: linear-gradient(90deg, #d4af37, #f5e6a7);
  border-radius: 3px;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #0d0d0d;
  margin: 1.5rem 0;
  max-width: 90%;
      font-weight: 500;
    letter-spacing: 1px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* BUTTONS */
.btn-primary-custom {
  background: var(--primary-color);
  color: #fff;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(42, 76, 143, 0.3);
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(42, 76, 143, 0.4);
  color: #fff;
}

.btn-outline-custom {
  border: 2px solid var(--primary-color);
  background: transparent;
  padding: 12px 32px;
  border-radius: 50px;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline-custom:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(42, 76, 143, 0.2);
}

/* HERO IMAGE */
.hero-image {
  position: relative;
  z-index: 2;
  height: 750px;
  width: 750px;
}

.hero-image img {
  width: 750px;
  animation: floatSlow 5s ease-in-out infinite;
  border-radius: 50%;
  filter: drop-shadow(0 20px 25px -8px rgba(0, 0, 0, 0.15));
  height: 750px;
  object-fit: cover;
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

/* section service */
.services-section {
    padding: 100px 0;
    background: #131d34;
    color: #fff;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin: 50px 0;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(90deg, #d4af37, #f5e6a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: #ccc;
  margin-top: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Add perspective to parent */
.service-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  perspective: 1000px; /* important for 3D */
}

/* Icon base */
.service-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: inline-block;
  transition: transform 0.6s ease;
}

/* Card hover */
.service-card:hover {
  transform: translateY(-10px) scale(1.1);
  border-color: #d4af37;
  cursor: pointer;
  box-shadow: 0 0px 8px rgba(212, 175, 55, 0.2);
}

/* ✨ ICON ANIMATION ON HOVER */
.service-card:hover .icon {
  transform: rotateY(360deg) scale(1.3);
}
.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #f5e6a7;
}

.service-card p {
  font-size: 14px;
  color: #ddd;
}



/* .compliance-section {
  padding: 80px 0;
  background:#0c111c;
  color: #fff;
}

.compliance-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #d4af37, #f5e6a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.compliance-content p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}


.compliance-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.comp-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: 0.4s;
  border: 1px solid rgba(255,255,255,0.1);
}


.comp-card i {
  font-size: 35px;
  margin-bottom: 10px;
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #f5e6a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.comp-card:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: #d4af37;
} */

.compliance-unique {
    background: #131d34;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

/* Layout */
.compliance-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 50px 0;
}

/* LEFT */
.compliance-left {
  flex: 1;
}

.tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #d4af37;
  text-transform: uppercase;
}

.compliance-left h2 {
  font-size: 40px;
  margin: 15px 0;
  line-height: 1.3;
}

.compliance-left h2 span {
  background: linear-gradient(90deg, #d4af37, #f5e6a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GOLD LINE */
.gold-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f5e6a7);
  margin: 20px 0;
  border-radius: 5px;
}

/* TEXT */
.compliance-left p {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* RIGHT SIDE */
.compliance-right {
  flex: 1;
  position: relative;
  height: 420px;
}

/* GLASS CARD */
.glass-card {
  position: absolute;
  width: 200px;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.4s;
}

/* ICON */
.glass-card i {
  font-size: 30px;
  margin-bottom: 10px;
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #f5e6a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-card h4 {
  font-size: 16px;
  color: #f5e6a7;
}

/* POSITIONS */
.c1 { top: 0; left: 40px; }
.c2 { top: 120px; right: 0; }
.c3 { bottom: 60px; left: 100px; }
.c4 { bottom: 0; right: 40px; }

/* HOVER */
.glass-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: #d4af37;
  box-shadow: 0 10px 30px rgba(212,175,55,0.2);
}

/* FLOAT ANIMATION */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.c1 { animation: float 6s ease-in-out infinite; }
.c2 { animation: float 7s ease-in-out infinite; }
.c3 { animation: float 5s ease-in-out infinite; }
.c4 { animation: float 6.5s ease-in-out infinite; }

/* Responsive */
@media (max-width: 768px) {
  .compliance-wrapper {
    flex-direction: column;
  }

  .compliance-right {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .glass-card {
    position: relative;
    width: 100%;
  }
}

.about-section-unique {
  background: #131d34;
  padding: 150px 0;
  color: #fff;
  overflow: hidden;
}

/* Layout */
.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* LEFT SIDE */
.about-left {
  flex: 1;
}

.tag {
  font-size: 16px;
  letter-spacing: 2px;
  color: #d4af37;
  text-transform: uppercase;
}

.about-left h2 {
  font-size: 40px;
  margin: 15px 0;
  line-height: 1.3;
}

.about-left h2 span {
  background: linear-gradient(90deg, #d4af37, #f5e6a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GOLD LINE */
.about-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f5e6a7);
  margin: 20px 0;
  border-radius: 5px;
}

/* TEXT */
.about-left p {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #d4af37, #f5e6a7);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212,175,55,0.4);
}

/* RIGHT SIDE */
.about-right {
  flex: 1;
  position: relative;
  height: 400px;
}

/* GLASS CARDS */
.glass-card {
  position: absolute;
  width: 220px;
  padding: 20px;
  border-radius: 15px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.4s;
}

.glass-card h4 {
  color: #f5e6a7;
  margin-bottom: 10px;
}

.glass-card p {
  font-size: 13px;
  color: #ccc;
}

/* Floating Positions */
.card-1 {
  top: 0;
  left: 50px;
}

.card-2 {
  top: 140px;
  right: 0;
}

.card-3 {
  bottom: 0;
  left: 120px;
}

/* Hover Animation */
.glass-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: #d4af37;
 box-shadow: 0 0px 8px rgba(212, 175, 55, 0.2);
}

/* FLOATING ANIMATION */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.card-1 { animation: float 6s ease-in-out infinite; }
.card-2 { animation: float 7s ease-in-out infinite; }
.card-3 { animation: float 5s ease-in-out infinite; }


.contact-modern {
  background: #0c111c;
  padding: 130px 0;
  color: #fff;
}

/* MAIN BOX */
.contact-box {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* LEFT PANEL */
.contact-info-panel {
  flex: 1;
  padding: 45px;
  background: linear-gradient(160deg, #0f172a, #1e293b);
  position: relative;
}

.contact-info-panel h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.tagline {
  font-style: italic;
  color: #d4af37;
  margin: 15px 0 30px 0;
}

/* INFO ITEMS */
.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.info-item i {
  font-size: 20px;
  margin-right: 15px;
  color: #d4af37;
}

.info-item span {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

/* RIGHT FORM PANEL */
.contact-form-panel {
  flex: 1;
  padding: 45px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(15px);
}

.contact-form-panel h6 {
  margin-bottom: 20px;
}

.contact-form-panel h6 span{  background: linear-gradient(90deg, #d4af37, #f5e6a7);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;}

/* FORM */
.contact-form-panel form {
  display: flex;
  flex-direction: column;
}

.contact-form-panel input,
.contact-form-panel textarea {
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: #fff;
  outline: none;
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
  border-color: #d4af37;
}

/* BUTTON */
.contact-form-panel button {
  padding: 12px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #d4af37, #f5e6a7);
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form-panel button:hover {
  transform: scale(1.05);
  box-shadow:0 5px 15px rgba(212,175,55,0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-box {
    flex-direction: column;
  }
}


.footer {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    padding: 50px 0 20px;
}

.footer-title {
    color: #b39744;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #ddd;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #b39744;
    padding-left: 5px;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer-bottom p {
      font-size: 13px;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}