/* ==========================================================================
/* ==========================================================================
   CSS VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
  --primary-dark: #0B5D3B;       /* Deep Islamic Green */
  --primary-emerald: #0F7A4D;    /* Rich Emerald Green */
  --primary-light: #E8F5E9;      /* Subtle Green Tint */
  --gold-accent: #D4AF37;        /* Premium Metallic Gold */
  --gold-hover: #B89628;
  --dark-gray: #1C2421;          /* Dark Slate */
  --text-dark: #2B3431;
  --text-muted: #62706B;
  --white: #FFFFFF;
  --off-white: #F8FAF8;
  --border-color: #E2E8E4;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(212, 175, 55, 0.25);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 15px 35px rgba(11, 93, 59, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .brand-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--dark-gray);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* ==========================================================================
   LAYOUT CONTAINERS & UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 30px 0;
}

.bg-light-islamic {
  background-color: #F2F7F4;
  background-image: radial-gradient(var(--border-color) 1px, transparent 0);
  /* background-size: 24px 24px; */
}

.section-title {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 20px auto;
}

.section-title .sub-title {
  display: inline-block;
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title h2 {
  font-size: 2.25rem;
  color: var(--dark-gray);
  margin-bottom: 12px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-accent), var(--gold-hover));
  color: var(--dark-gray);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-call {
  background-color: var(--primary-dark);
  color: var(--white);
}

.btn-call:hover {
  background-color: var(--primary-emerald);
}

.btn-whatsapp, .btn-whatsapp-lg {
  background-color: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover, .btn-whatsapp-lg:hover {
  background-color: #1DA851;
  transform: translateY(-2px);
}

/* Ripple Animation Effect */
.ripple {
  position: relative;
  overflow: hidden;
}

/* ==========================================================================
   HEADER & STICKY NAV
   ========================================================================== */
.top-bar {
  background-color: var(--dark-gray);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar .contact-info span {
  margin-right: 20px;
  color: #D1D5D3;
}

.top-badge {
  color: var(--gold-accent);
  font-weight: 600;
}

.site-header {
  /* position: sticky; */
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-emerald));
  color: var(--gold-accent);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  position: relative;
}

.star-mini {
  font-size: 0.5rem;
  position: absolute;
  top: 10px;
  right: 12px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.15rem;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
}

.brand-sub {
  font-size: 0.65rem;
  color: var(--gold-accent);
  letter-spacing: 1.5px;
  font-weight: 800;
}

.nav-menu {
  display: flex;
  gap: 24px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--gold-accent);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-cta-group {
  display: flex;
  gap: 10px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-dark);
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #073D27 0%, var(--primary-dark) 50%, #052B1B 100%);
  color: var(--white);
  padding: 40px 0 40px 0;
  overflow: hidden;
}

.islamic-pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:url(../image/bg-banner.jpg);
  background-size:cover ;
  /* background-size: 30px 30px; */
  opacity: 0.6;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.badge-gold {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-accent);
  color: var(--gold-accent);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-heading {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 10px;
}

.hero-subheading {
  font-size: 2.4rem;
  color:gold;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-desc {
color: #D1E5DC;
  font-size: 1.08rem;
  margin-bottom: 30px;
  max-width: 580px;
  line-height: 32px
}

.hero-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 35px;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #E2F0EA;
}

.hero-highlights i {
  color: var(--gold-accent);
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-image-wrapper {
  position: relative;
  text-align: center;
}

.image-frame-glow {
  border-radius: 50% 50% 20px 20px;
  padding: 12px;
  background: linear-gradient(135deg, var(--primary-light), transparent);
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.25);
}

.hero-img {
  width: 100%;
  max-width: 430px;
  height: 538px;
  object-fit: cover;
  border-radius: 50% 50% 12px 12px;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: var(--white);
  color: var(--dark-gray);
  padding: 15px 25px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 5px solid var(--gold-accent);
}

.experience-badge .number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.experience-badge .text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-img-box img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-content-col .lead-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.about-content-col .body-text {
  color:#060707;
  margin-bottom: 30px;
  text-align: justify;
  font-weight:500;
}

.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #d19f08;
  background: linear-gradient(90deg,rgba(209, 159, 8, 1) 0%, rgba(176, 157, 18, 1) 35%, rgba(5, 115, 49, 1) 100%);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.feature-card i {
  font-size: 1.5rem;
  color:#155C01;
  background: var(--primary-light);
  padding: 12px;
  border-radius: var(--radius-sm);
}

.feature-card h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: black;
}

.feature-card p {
  font-size: 1rem;
  color:white;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-accent);
}

.service-img {
  position: relative;
  height:auto;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img img {
  transform: scale(1.08);
}

.service-icon-floating {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--primary-dark);
  color: var(--gold-accent);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.service-content {
  padding:11px 15px;
}

.service-content h3 {
 font-size: 20px;
 text-align: center;
 border: 1px solid green;
 background: #faa507;
background: linear-gradient(90deg,rgba(250, 165, 7, 1) 0%, rgba(115, 143, 6, 1) 35%, rgba(5, 115, 49, 1) 100%);
 padding:9px 5px;
 border-radius: 9px;
 color: white;

}

.service-content p {
  font-size:18px;
  color: black;
  margin-bottom: 20px;
  line-height: 28px;
  text-align: justify;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-dark);
}

.service-card:hover .read-more {
  color: var(--gold-accent);
}

/* ==========================================================================
   WHY CHOOSE US & GLASS CARDS
   ========================================================================== */
.why-us-section {
  background: linear-gradient(135deg, var(--primary-dark), #063823);
  color: var(--white);
}

.why-us-section .section-title h2, 
.why-us-section .section-title .sub-title {
  color: var(--white);
}

.why-us-section .section-title .sub-title {
  color: var(--gold-accent);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 30px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-accent);
  color: var(--dark-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px auto;
}

.glass-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.glass-card p {
  color: #C8DCDB;
  font-size: 0.9rem;
}

/* ==========================================================================
   STATISTICS COUNTER
   ========================================================================== */
.stats-section {
  background-color: var(--gold-accent);
  color: var(--dark-gray);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-box i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.stat-number, .plus {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 5px;
}

/* ==========================================================================
   TESTIMONIALS SLIDER
   ========================================================================== */
.testimonial-slider-wrapper {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  min-width: 100%;
  background-image:url(../image/white-back\ -\ Copy.jpg);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  box-sizing: border-box;
  text-align: center;
  border: 3px solid green;
  box-shadow: 2px 2px 2px 2px gray;
  background-size: cover;

}

.stars {
  color:gold;
  margin-bottom: 15px;
}

.quote {
  font-size: 1.1rem;
  font-style:normal;
  color:black;
  margin-bottom: 25px;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.client-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-accent);
}

.client-info h4 {
  font-size: 1rem;
  text-align: left;
  color: green;
}

.client-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  text-align: left;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.slider-controls button {
  background: var(--white);
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--primary-dark);
  transition: var(--transition);
}

.slider-controls button:hover {
  background: var(--primary-dark);
  color: var(--white);
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 240px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(11, 93, 59, 0.85);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 85%;
  max-height: 85%;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 25px; right: 35px;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-container {
  max-width: 800px;
}

.accordion-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header i {
  color: var(--primary-dark);
  transition: var(--transition);
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 24px;
}

.accordion-item.active .accordion-body {
  padding: 0 24px 20px 24px;
}

.accordion-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background: #FAFAFA;
}

.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-dark);
  background: var(--white);
}

.w-100 {
  width: 100%;
}

.form-alert {
  margin-top: 15px;
  padding: 12px;
  border-radius: var(--radius-sm);
  display: none;
  font-size: 0.9rem;
}

.form-alert.success {
  display: block;
  background: #D4EDDA;
  color: #155724;
}

.contact-details-wrapper .info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
}

.contact-details-wrapper .info-item i {
  font-size: 1.25rem;
  color: var(--primary-dark);
  background: var(--primary-light);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-placeholder {
  height: 180px;
  background: #E8EFEA;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--primary-dark);
  border: 2px dashed var(--border-color);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #0A0A0A;
  color: #A3B1AC;
  padding-top:30px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.footer-col h4 {
  color:gold;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 30px; height: 2px;
  background: var(--gold-accent);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a:hover {
  color: var(--gold-accent);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}

.social-links a:hover {
  background: var(--gold-accent);
  color: var(--dark-gray);
}

.footer-bottom {
  background:gold;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;

}

/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */
.floating-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.float-call { background-color: var(--primary-dark); }
.float-wa { background-color: #25D366; }
.float-top { 
  background-color: var(--dark-gray); 
  display: none; 
}

.float-btn:hover {
  transform: scale(1.1);
}

/* Page Loader */
#page-loader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--dark-gray);
  display: flex; align-items: center; justify-content: center;
  z-index: 3000;
  transition: opacity 0.5s ease;
}

.crescent-loader {
  width: 50px; height: 50px;
  border: 4px solid rgba(212, 175, 55, 0.2);
  border-top: 4px solid var(--gold-accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Scroll Revel Classes */
.fade-up, .zoom-in {
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up { transform: translateY(40px); }
.zoom-in { transform: scale(0.9); }

.fade-up.visible, .zoom-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);

}
.black5{
  color:black;
}
.top-head {
  background: linear-gradient(to right, #007656, #05b376, #007656);
  padding: 5px 0;
}

.top-head-cta ul li a i {
  display: inline-block;
  border-radius: 8px;
  width: 35px;
  height: 35px;
  line-height: 34px;
  position: absolute;
  left: -11px;
  text-align: center;
  top: -1px;
  background: #ffc800;
  transform: rotate(45deg);
  fill: #ffffff;
}

.top-head-cta ul li a {
  color: #000000;
  display: inline-block;
  text-align: right;
  position: relative;
  background: #ffffff;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 13px;
  padding: 3px 15px 5px 20px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-decoration:none;
}
.center-top-head {
  padding: 5px 8px;
  font-size: 16px;
  text-align: center;
  position: relative;
  background: #ffd600;
  border-radius: 100px;
}
.center-top-head li {
  margin: 0 2px;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 16px;
}


.center-top-head li i {
  background: linear-gradient(to right, #007656, #05b376, #007656);

  color: #fff;
  border-radius: 36px;

  width: 28px;
  height: 28px;
  font-size: 15px;
  padding: 6px 0;

  fill: #ffffff;
  position: relative;
  top: -0.5px;
}

.top-head li {
  display: inline-block;
}

.top-head-cta ul li {
  display: inline-block;
  padding: 5px 9px 5px 13px;
}
.light-back {
  background: #fff;
  border-radius: 45px;
}
.ic-r p {
  color: #000000;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.more7{
  color: white;
  font-size: 17px;
  text-decoration: none;
}
 .gold7{
  color:gold;
 }