

:root{
  --brand-dark:#112b3c;
  --brand-teal:#2f7f89;
  --brand-gold:#d4a24c;
  --brand-cream:#f7f2e8;
}

html, body{
  max-width:100%;
  overflow-x:hidden;
}

body{
  font-size:15px;
  background:#fcfbf8;
  color:#233746;
}

img,
iframe,
video {
  max-width: 100%;
}

.container,
.container-fluid,
.row {
  max-width: 100%;
}

h1,h2,h3,h4,h5,h6{
  font-family:Poppins;
}

p{
  font-family:Roboto;
  color:#50616f;
}

a:hover {
  color: var(--brand-teal);
  text-decoration: underline;
}

.text-center {
    text-align: center!important;
}

.bottom-space {
  margin-bottom: 1rem;
}

.justify-content-center {
    justify-content: center !important;
}

.hover-effect {
  position: relative;
  overflow: hidden;
}

.hover-effect:hover::after, .hover-effect:hover::before {
  height: 100%;
  opacity: 0;
  width: 100%;
}

.hover-effect::before, .hover-effect::after {
  content: "";
  background: #fff;
  height: 0;
  width: 0;
  z-index: 1;
  position: absolute;
  -webkit-transition-duration: 1.6s;
  -o-transition-duration: 1.3s;
  transition-duration: 1.3s;
}

.hover-effect::before, .hover-effect::after {
  content: "";
  background: #fff;
  height: 0;
  width: 0;
  z-index: 1;
  position: absolute;
  -webkit-transition-duration: 1.3s;
  -o-transition-duration: 1.3s;
  transition-duration: 1.3s;
}

.hover-effect::before {
  right: 0;
  opacity: 1;
  top: 0;
}

ol, ul {
	list-style: none;
}

ul {
  padding: 0;
  list-style-type: none;
}

blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* ----------------------------------------------------------------
     [ 01 End Basics ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ 02 Start Buttons ]
-----------------------------------------------------------------*/
.button-style {
  background: linear-gradient(135deg, var(--brand-gold), #ba8d41);
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 0.8rem;;
  line-height: 1em;
  outline: none;
  padding: 0.8rem 2.5rem 0.7rem;
  position: relative;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none !important;
}

.showcase-btn {
  margin: 1.3rem;
}

.button-style:before,
.button-style:after {
  border-color: transparent;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  border-style: solid;
  border-width: 0;
  content: "";
  height: 1.8rem;
  position: absolute;
  width: 1.8rem;
}

.button-style:before {
  border-color: hsl(20, 16%, 96%);
  border-left-width: 2px;
  border-top-width: 2px;
  left: -5px;
  top: -5px;
}

.button-style:after {
  border-bottom-width: 2px;
  border-color: var(--brand-teal);
  border-right-width: 2px;
  bottom: -5px;
  right: -5px;
}

.button-style:hover,
.button-style.hover {
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-dark));
  color: #ffffff;
}

.button-style:hover:before,
.button-style.hover:before,
.button-style:hover:after,
.button-style.hover:after {
  height: 100%;
  width: 100%;
}

/* ----------------------------------------------------------------
     [ End Buttons ]
-----------------------------------------------------------------*/

/* ----------------------------------------------------------------
     [ 03 Start Navbar ]
-----------------------------------------------------------------*/

nav a {
  color: #ffffff;
  font-size: .8rem;
  text-transform: uppercase;
  margin-right: 1rem;
}

.navbar-default{
  border:0;
  font-family:Poppins;
}

.navbar-brand{
  font-size:1rem;
  color:#000 !important;
  font-weight:bold;
}

.navbar-default {
    background-color: transparent;
    border-color: #e7e7e7;
    padding: 0.6rem;
}

.navbar-default .navbar-nav>li>a {
  font-size: 0.7rem;
  font-weight: 500;
  color: #eee;
  letter-spacing: .5px;
  margin-left: .9px;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.navbar-default .navbar-nav>li>a:hover {
  color: #ffffff;
}

.navbar-default .navbar-nav>li>a:active {
  color: #0dd;
}

a.navbar-brand {
    color: #fff !important;
}

.navbar-default{
  border:0;
  font-family:Poppins;
}

.navbar-brand{
  font-size:20px;
  color:#000 !important;
  font-weight:bold;
}

.navbar-default {
    background-color: transparent;
    border-color: #e7e7e7;
    padding: .7px;
}

.navbar-default .navbar-nav>li>a {
  font-size: 13px;
  font-weight: 500;
  color: #eee;
  letter-spacing: .5px;
  margin-left: 14px;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.navbar-default .navbar-nav>li>a:hover {
  color: #ffffff;
}

.navbar-default .navbar-nav>li>a:active {
  color: #0dd;
}

.activate-menu {
  background-image: linear-gradient(135deg, var(--brand-dark) 0%, #17384d 45%, var(--brand-teal) 100%);
  -webkit-box-shadow: -3px 13px 24px -1px rgba(17,43,60,0.18);
  box-shadow: -3px 13px 24px -1px rgba(17,43,60,0.18);
}

/* ----------------------------------------------------------------
     [ 04 Shared Layout ]
-----------------------------------------------------------------*/

:root {
  --brand-ink: #102331;
  --brand-ink-soft: #1c3a4d;
  --brand-coral: #ef5b5b;
  --brand-sky: #4aa8ff;
  --brand-white: #ffffff;
  --brand-mist: #edf4f3;
  --brand-border: rgba(16, 35, 49, 0.08);
  --brand-shadow: 0 18px 40px rgba(16, 35, 49, 0.1);
}

body {
  font-family: 'Manrope', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.02em;
}

.site-header-shell {
  position: sticky;
  top: 0;
  z-index: 1030;
  backdrop-filter: blur(18px);
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid var(--brand-border);
}

.top-ribbon {
  background: linear-gradient(90deg, var(--brand-ink) 0%, var(--brand-coral) 45%, var(--brand-teal) 100%);
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  padding: 10px 0;
}

.top-ribbon a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
}

.top-ribbon a:hover {
  color: var(--brand-sand);
}

.top-ribbon i {
  color: var(--brand-gold);
  margin-right: 6px;
}

.top-ribbon .contact-inline span {
  display: inline-block;
  margin-right: 20px;
}

.top-ribbon .location-text {
  text-align: right;
  color: rgba(255,255,255,0.85);
}

.nav-frame {
  padding: 14px 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none !important;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--brand-coral), var(--brand-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--brand-shadow);
}

.brand-mark img {
  max-width: 36px;
  max-height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.brand-text {
  line-height: 1;
}

.brand-text strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 31px;
  color: var(--brand-ink);
  font-weight: 700;
}

.brand-text span {
  display: block;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--brand-teal);
  font-weight: 700;
}

.main-nav {
  align-items: center;
}

.main-nav .nav-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-ink) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 14px !important;
  position: relative;
}

.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 4px;
  width: calc(100% - 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-sky), var(--brand-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link:focus::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-coral), var(--brand-teal));
  color: var(--brand-white) !important;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none !important;
  box-shadow: 0 14px 30px rgba(210, 165, 91, 0.22);
}

.header-cta:hover {
  transform: translateY(-1px);
  color: var(--brand-white) !important;
}

.navbar-toggler {
  border: 1px solid var(--brand-border) !important;
  border-radius: 14px;
  padding: 10px 12px;
  background: var(--brand-white);
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler .fa {
  color: var(--brand-ink);
  font-size: 20px;
}

.icon-bar {
  display: none !important;
}

.site-footer {
  position: relative;
  overflow: clip;
  clip-path: none;
  -webkit-clip-path: none;
  background:
    radial-gradient(circle at top left, rgba(239, 91, 91, 0.22), transparent 35%),
    radial-gradient(circle at bottom right, rgba(74, 168, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #0d202d 0%, #143346 40%, #1f8a8a 100%);
  color: rgba(255,255,255,0.92);
  padding: 90px 0 28px;
  margin-top: 0;
  width: 100%;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.footer-panel {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 34px;
  height: 100%;
  backdrop-filter: blur(8px);
}

.footer-panel h3 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 14px;
}

.footer-panel p,
.footer-panel a,
.footer-panel li {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  text-transform: none !important;
  letter-spacing: normal !important;
  color: rgba(255,255,255,0.86) !important;
  text-decoration: none !important;
}

.footer-panel a:hover {
  color: #f7f2e8 !important;
}

.footer-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 800;
  color: #ffb347;
  margin-bottom: 12px;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: #d2a55b;
  margin-top: 6px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.footer-bottomline {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: calc(100vw - 20px);
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 18px 30px rgba(16, 35, 49, 0.18);
  transition: transform 0.25s ease;
}

.float-btn:hover {
  transform: translateY(-4px);
}

.call-btn {
  background: linear-gradient(135deg, #ffb347, #ef5b5b);
}

.wa-btn {
  background: linear-gradient(135deg, #2dc76d, #1ea85a);
}

/* ----------------------------------------------------------------
     [ 05 Home ]
-----------------------------------------------------------------*/

.home-hero { padding: 0px; }
.hero-card { background: linear-gradient(125deg, rgba(16,35,49,.88), rgba(239,91,91,.46), rgba(31,138,138,.62)), url('../img/slider.jpg') center/cover; min-height: 440px;  overflow: hidden; position: relative; box-shadow: 0 22px 55px rgba(16,35,49,.12); }
.hero-card::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 15% 20%, rgba(210,165,91,.32), transparent 22%), linear-gradient(90deg, rgba(8,21,31,.48), transparent 70%); }
.hero-content { position:relative; z-index:1; padding: 86px 60px; max-width:1120px; color:#fff; }
.eyebrow { display:inline-flex; align-items:center; gap:10px; padding:8px 16px; border-radius:999px; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.18); font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.18em; }
.hero-content h1 { font-size: clamp(3.2rem, 6vw, 6rem); line-height:.95; margin:24px 0 18px; color:#fff; }
.hero-content p { max-width:540px; color:rgba(255,255,255,.82); font-size:16px; line-height:1.9; }
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top:28px; }
.cta-primary, .cta-secondary { display:inline-flex; align-items:center; justify-content:center; min-width:180px; padding:15px 24px; border-radius:999px; text-decoration:none !important; font-size:13px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; }
.cta-primary { background: linear-gradient(135deg, var(--brand-gold), var(--brand-coral), var(--brand-teal)); color:#fff !important; box-shadow: 0 18px 35px rgba(217,134,42,.28); }
.cta-secondary { background: rgba(255,255,255,.08); color:#fff !important; border:1px solid rgba(255,255,255,.18); }
.hero-search-bar { margin-top:28px; width:100%; max-width:980px; }
.hero-search-grid { display:grid; grid-template-columns:1.5fr 1fr 220px; gap:14px; width:100%; padding:18px; border-radius:28px; background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.2); backdrop-filter:blur(10px); box-shadow:0 20px 45px rgba(0,0,0,.14); }
.hero-search-field label { display:block; margin-bottom:8px; font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.14em; color:rgba(255,255,255,.72); }
.hero-search-input { width:100%; height:58px; border-radius:18px; border:1px solid rgba(255,255,255,.18); background:rgba(255,255,255,.95); color:var(--brand-ink); padding:12px 18px; font-size:15px; font-weight:600; }
.hero-search-input:focus { outline:none; border-color:var(--brand-sky); }
.hero-search-button { align-self:end; height:58px; width:100%; border:0; border-radius:18px; padding:0 24px; background:linear-gradient(135deg, var(--brand-gold), var(--brand-coral)); color:#fff; font-size:12px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; }
.hero-facts { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; margin-top:34px; }
.hero-fact { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); border-radius:24px; padding:18px; }
.hero-fact strong { display:block; font-size:28px; color:#fff; font-family:'Cormorant Garamond', serif; }
.hero-fact span { display:block; font-size:12px; text-transform:uppercase; letter-spacing:.12em; color:rgba(255,255,255,.72); }
.section-block { padding:80px 0; }
.section-intro { margin-bottom:34px; }
.section-intro span { display:inline-block; font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.18em; color:var(--brand-teal); margin-bottom:12px; }
.section-intro h2 { font-size: clamp(2.5rem, 4vw, 4rem); color:var(--brand-ink); margin-bottom:10px; }
.section-intro p { max-width:620px; color:#516676; font-size:15px; line-height:1.9; }
.feature-grid, .reason-grid, .package-grid, .cards-row, .contact-strip, .services-grid, .gallery-grid { display:grid; gap:24px; }
.feature-grid, .reason-grid, .cards-row, .contact-strip, .services-grid, .gallery-grid, .package-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
.feature-card, .reason-card, .story-panel, .contact-rail, .package-card, .package-tile, .about-panel, .service-box, .gallery-card, .contact-panel, .map-panel { background:#fff; border:1px solid rgba(16,35,49,.08); border-radius:30px; box-shadow:0 22px 55px rgba(16,35,49,.1); }
.feature-card { padding:30px; }
.feature-icon { width:64px; height:64px; border-radius:20px; background:linear-gradient(135deg, rgba(74,168,255,.18), rgba(239,91,91,.18), rgba(217,134,42,.22)); color:var(--brand-teal); display:inline-flex; align-items:center; justify-content:center; font-size:26px; margin-bottom:18px; }
.feature-card h3, .reason-card h3, .package-body h3, .contact-box strong, .package-copy h2, .about-panel h2, .cards-row article h3, .contact-strip article h3, .service-box h2, .gallery-card h3, .contact-item h3, .form-panel h2 { color:var(--brand-ink); }
.feature-card h3, .reason-card h3 { font-size:30px; margin-bottom:10px; }
.feature-card p, .reason-card p, .package-body p, .about-panel p, .cards-row article p, .contact-strip article p, .service-box p, .gallery-card p, .contact-item p, .form-panel p { font-family:'Manrope', sans-serif; line-height:1.9; font-size:14px; color:#586d7b; margin-bottom:0; }
.package-showcase { background: linear-gradient(180deg, rgba(237,244,243,.7) 0%, rgba(255,255,255,.96) 100%); border-top:1px solid rgba(16,35,49,.06); border-bottom:1px solid rgba(16,35,49,.06); }
.package-card { overflow:hidden; }
.package-card figure { margin:0; position:relative; height:250px; }
.package-card figure img { width:100%; height:100%; object-fit:cover; }
.package-tag, .package-price, .package-label, .package-rate { position:absolute; top:18px; border-radius:999px; padding:8px 14px; font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.1em; }
.package-tag, .package-label { left:18px; background:rgba(255,255,255,.85); color:var(--brand-ink); }
.package-price, .package-rate { right:18px; background:var(--brand-ink); color:#fff; }
.package-body, .package-copy { padding:26px; }
.package-body h3, .package-copy h2 { font-size:30px; margin-bottom:12px; }
.package-meta, .package-mini { display:flex; flex-wrap:wrap; gap:14px 18px; margin-bottom:16px; font-size:13px; color:#5c7080; font-weight:700; }
.text-link, .package-link { display:inline-flex; align-items:center; gap:8px; text-decoration:none !important; font-size:13px; font-weight:800; text-transform:uppercase; letter-spacing:.12em; }
.text-link { color:var(--brand-coral); }
.package-link { color:var(--brand-teal); }
.split-story, .about-grid, .contact-wrap, .contact-layout { display:grid; gap:26px; }
.split-story { grid-template-columns:1.1fr .9fr; align-items:stretch; }
.about-grid, .contact-wrap, .contact-layout { grid-template-columns:1fr 1fr; }
.story-panel, .about-panel, .contact-panel, .contact-rail { padding:36px; }
.story-photo { min-height:100%; background: linear-gradient(180deg, rgba(16,35,49,.15), rgba(16,35,49,.28)), url('../img/hhh.jpg') center/cover; border-radius:30px; min-height:470px; box-shadow:0 22px 55px rgba(16,35,49,.1); }
.reason-card, .cards-row article, .contact-strip article, .service-box { padding:28px; }
.reason-number, .number-badge { display:inline-flex; align-items:center; justify-content:center; width:48px; height:48px; border-radius:50%; background:var(--brand-sand); color:var(--brand-gold); font-family:'Manrope', sans-serif; font-size:14px; font-weight:800; margin-bottom:16px; }
.contact-box, .contact-item, .footer-contact-item { display:flex; gap:14px; align-items:flex-start; }
.contact-box i, .contact-item i, .contact-strip article i { background:var(--brand-sand); color:var(--brand-gold); display:inline-flex; align-items:center; justify-content:center; }
.contact-box i { width:46px; height:46px; border-radius:16px; font-size:18px; }
.contact-item i, .contact-strip article i { width:48px; height:48px; border-radius:16px; font-size:18px; }
.contact-box strong { display:block; font-family:'Cormorant Garamond', serif; font-size:28px; }
.contact-box span { display:block; font-size:14px; line-height:1.8; color:#5a6d7c; }
.contact-card, .map-panel { padding:0; overflow:hidden; }
.contact-card iframe, .map-panel iframe { width:100%; height:100%; min-height:420px; border:0; }

/* ----------------------------------------------------------------
     [ 06 Page Heroes ]
-----------------------------------------------------------------*/

.packages-hero, .about-hero, .services-hero, .gallery-hero, .contact-hero { padding:82px 0 28px; }
.packages-banner, .hero-frame, .services-banner, .gallery-banner, .contact-banner {
  border-radius:34px;
  padding:78px 54px;
  box-shadow:0 22px 55px rgba(16,35,49,.1);
  color:#fff;
}
.packages-banner { background: linear-gradient(120deg, rgba(16,35,49,.9), rgba(47,127,137,.76)), url('../img/bbbg.jpg') center/cover; }
.destination-banner { background: linear-gradient(120deg, rgba(16,35,49,.9), rgba(217,134,42,.45), rgba(47,127,137,.72)), url('../img/bbbg.jpg') center/cover; }
.hero-frame { background: linear-gradient(115deg, rgba(16,35,49,.88), rgba(47,127,137,.78)), url('../img/hhh.jpg') center/cover; }
.services-banner { background: linear-gradient(120deg, rgba(16,35,49,.9), rgba(47,127,137,.74)), url('../img/bbbg.jpg') center/cover; }
.gallery-banner { background: linear-gradient(120deg, rgba(16,35,49,.88), rgba(47,127,137,.74)), url('../img/bbbg.jpg') center/cover; }
.blog-banner { background: linear-gradient(120deg, rgba(16,35,49,.88), rgba(239,91,91,.42), rgba(47,127,137,.74)), url('../img/slider.jpg') center/cover; }
.contact-banner { background: linear-gradient(120deg, rgba(16,35,49,.88), rgba(239,91,91,.45), rgba(31,138,138,.74)), url('../img/contact us.webp') center/cover; }
.enquiry-banner { background: linear-gradient(120deg, rgba(16,35,49,.88), rgba(239,91,91,.4), rgba(217,134,42,.48)), url('../img/hhh.jpg') center/cover; }
.packages-banner span, .hero-frame span, .services-banner span, .gallery-banner span, .contact-banner span {
  display:inline-block;
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:12px;
  font-weight:800;
  color:rgba(255,255,255,.78);
  margin-bottom:12px;
}
.packages-banner h1, .hero-frame h1, .services-banner h1, .gallery-banner h1, .contact-banner h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom:12px;
  color:#fff;
}
.packages-banner p, .hero-frame p, .services-banner p, .gallery-banner p, .contact-banner p {
  max-width:640px;
  color:rgba(255,255,255,.84);
  line-height:1.9;
  margin-bottom:0;
}
.packages-grid-wrap, .about-block, .services-wrap, .gallery-wrap, .contact-body { padding:30px 0 90px; }
.packages-grid-wrap { overflow:hidden; }
.package-grid { width:100%; }
.package-media, .gallery-image { position:relative; height:240px; overflow:hidden; }
.package-media img, .gallery-image img { width:100%; height:100%; object-fit:cover; }
.gallery-card { padding:14px; }
.gallery-image { border-radius:22px; margin-bottom:18px; }
.blog-card { padding:16px; }
.blog-meta { display:flex; flex-wrap:wrap; gap:12px; margin-bottom:12px; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:#6d7f8d; }
.blog-read-link, .blog-back-link { display:inline-flex; align-items:center; gap:8px; margin-top:18px; color:var(--brand-coral); font-weight:800; text-decoration:none !important; text-transform:uppercase; letter-spacing:.08em; font-size:12px; }
.blog-detail-card { background:#fff; border:1px solid rgba(16,35,49,.08); border-radius:34px; box-shadow:0 22px 55px rgba(16,35,49,.1); overflow:hidden; }
.blog-detail-image { height:420px; overflow:hidden; }
.blog-detail-image img { width:100%; height:100%; object-fit:cover; }
.blog-detail-copy { padding:34px; }
.blog-detail-copy h2 { color:var(--brand-ink); font-size:clamp(2rem, 4vw, 3.4rem); margin-bottom:14px; }
.blog-lead { font-size:17px !important; color:#445a68 !important; margin-bottom:20px !important; }
.blog-content-text { color:#586d7b; line-height:1.95; font-size:15px; white-space:normal; }
.blog-empty-state { grid-column:1 / -1; background:#fff; border-radius:28px; padding:42px; border:1px solid rgba(16,35,49,.08); text-align:center; box-shadow:0 22px 55px rgba(16,35,49,.08); }
.blog-showcase { background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(237,244,243,.65) 100%); border-top:1px solid rgba(16,35,49,.06); }
.blog-layout { display:grid; grid-template-columns:minmax(0, 1.7fr) minmax(320px, .9fr); gap:28px; align-items:start; }
.blog-feed-grid { grid-template-columns:repeat(2, minmax(0,1fr)) !important; }
.blog-main-column { min-width:0; }
.blog-sidebar { display:grid; gap:24px; position:sticky; top:110px; }
.blog-sidebar-card { background:#fff; border:1px solid rgba(16,35,49,.08); border-radius:28px; box-shadow:0 22px 55px rgba(16,35,49,.1); padding:26px; }
.sidebar-kicker { display:inline-block; margin-bottom:10px; text-transform:uppercase; letter-spacing:.16em; font-size:11px; font-weight:800; color:var(--brand-coral); }
.blog-sidebar-card h3 { color:var(--brand-ink); font-size:26px; margin-bottom:12px; }
.sidebar-blog-link { display:block; padding:14px 0; text-decoration:none !important; border-top:1px solid rgba(16,35,49,.08); }
.sidebar-blog-link:first-of-type { border-top:0; padding-top:4px; }
.sidebar-blog-link strong { display:block; color:var(--brand-ink); font-size:15px; line-height:1.5; }
.sidebar-blog-link span { display:block; margin-top:6px; color:#7b8d99; font-size:12px; text-transform:uppercase; letter-spacing:.08em; }
.sidebar-blog-link.active strong, .sidebar-blog-link:hover strong { color:var(--brand-coral); }
.enquiry-sidebar p { margin-bottom:18px; }
.sidebar-enquiry-form .form-group { margin-bottom:14px; }
.sidebar-enquiry-form .form-control { background:#f9fbfb; }
.enquiry-body { padding-top:10px; }
.enquiry-layout { display:grid; grid-template-columns:minmax(320px, .9fr) minmax(0, 1.25fr); gap:28px; align-items:start; }
.enquiry-info-card { background:linear-gradient(180deg, rgba(16,35,49,.97), rgba(31,138,138,.88)); color:#fff; border-radius:32px; box-shadow:0 22px 55px rgba(16,35,49,.14); padding:34px; position:relative; overflow:hidden; }
.enquiry-info-card::before { content:""; position:absolute; inset:auto -40px -40px auto; width:180px; height:180px; background:radial-gradient(circle, rgba(255,255,255,.16), transparent 68%); }
.enquiry-info-card .section-intro span, .enquiry-info-card .section-intro h2 { color:#fff; }
.enquiry-info-card .section-intro p { max-width:none; color:rgba(255,255,255,.78); }
.enquiry-highlight-list { display:grid; gap:18px; margin-top:24px; }
.enquiry-highlight-list article { display:flex; gap:14px; align-items:flex-start; padding:16px 0; border-top:1px solid rgba(255,255,255,.12); }
.enquiry-highlight-list article:first-child { border-top:0; padding-top:0; }
.enquiry-highlight-list i { width:42px; height:42px; border-radius:14px; background:rgba(255,255,255,.12); display:inline-flex; align-items:center; justify-content:center; font-size:18px; color:#fff; flex-shrink:0; }
.enquiry-highlight-list strong { display:block; font-size:16px; margin-bottom:4px; }
.enquiry-highlight-list p { margin:0; color:rgba(255,255,255,.76); font-size:14px; line-height:1.8; }
.enquiry-form-shell { border-radius:32px; padding:34px; }
.enquiry-form-grid { display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:16px; }
.enquiry-form-grid .form-group { margin-bottom:0; }
.enquiry-form-grid .full-span { grid-column:1 / -1; }
.destination-card .package-body p { min-height:86px; }
.service-pro-card { position:relative; overflow:hidden; }
.service-pro-icon { width:68px; height:68px; border-radius:22px; background:linear-gradient(135deg, rgba(239,91,91,.14), rgba(74,168,255,.16), rgba(217,134,42,.22)); color:var(--brand-teal); display:inline-flex; align-items:center; justify-content:center; font-size:28px; margin-bottom:18px; }
.service-points { margin:18px 0 0; padding:0; list-style:none; }
.service-points li { position:relative; padding-left:22px; margin-bottom:10px; color:#586d7b; font-size:14px; line-height:1.8; }
.service-points li::before { content:'•'; position:absolute; left:0; top:0; color:var(--brand-coral); font-size:18px; line-height:1.2; }
.services-journey-band { background: linear-gradient(180deg, rgba(237,244,243,.65) 0%, rgba(255,255,255,.96) 100%); border-top:1px solid rgba(16,35,49,.06); border-bottom:1px solid rgba(16,35,49,.06); }
.service-story-card { background:linear-gradient(145deg, rgba(16,35,49,.96), rgba(47,127,137,.88)); border-radius:30px; box-shadow:0 22px 55px rgba(16,35,49,.14); padding:1px; }
.service-story-inner { height:100%; border-radius:29px; padding:34px; color:#fff; background:linear-gradient(180deg, rgba(16,35,49,.78), rgba(16,35,49,.34)); }
.service-story-inner h3 { color:#fff; font-size:34px; margin-bottom:18px; }
.service-mini-list { display:grid; gap:18px; margin-top:24px; }
.service-mini-list article { display:flex; gap:14px; align-items:flex-start; padding-top:16px; border-top:1px solid rgba(255,255,255,.14); }
.service-mini-list article:first-child { padding-top:0; border-top:0; }
.service-mini-list i { width:44px; height:44px; border-radius:14px; background:rgba(255,255,255,.12); color:#fff; display:inline-flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.service-mini-list strong { display:block; font-size:16px; margin-bottom:4px; }
.service-mini-list p { margin:0; color:rgba(255,255,255,.76); font-size:14px; line-height:1.8; }
.service-enquiry-card { background:linear-gradient(180deg, #fff, #fbf7ef); }
.service-enquiry-card h3 { color:var(--brand-ink); font-size:34px; margin-bottom:14px; }
.service-match-list { display:grid; gap:12px; margin-top:22px; }
.service-match-list a { display:flex; align-items:center; gap:12px; padding:16px 18px; border-radius:18px; background:#fff; border:1px solid rgba(16,35,49,.08); color:var(--brand-ink); text-decoration:none !important; font-weight:700; box-shadow:0 14px 30px rgba(16,35,49,.06); }
.service-match-list a i { width:38px; height:38px; border-radius:12px; display:inline-flex; align-items:center; justify-content:center; background:rgba(239,91,91,.12); color:var(--brand-coral); }
.service-match-list a:hover { transform:translateY(-2px); box-shadow:0 18px 36px rgba(16,35,49,.1); }
.faq-section { padding: 10px 0 90px; background: linear-gradient(180deg, rgba(237,244,243,.55) 0%, rgba(255,255,255,.98) 100%); }
.faq-intro { max-width: 760px; }
.faq-list { display: grid; gap: 16px; }
.faq-item { background:#fff; border:1px solid rgba(16,35,49,.08); border-radius:24px; box-shadow:0 18px 42px rgba(16,35,49,.08); overflow:hidden; }
.faq-item summary { list-style:none; cursor:pointer; padding:22px 26px; font-size:17px; font-weight:800; color:var(--brand-ink); position:relative; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content:'+'; position:absolute; right:24px; top:50%; transform:translateY(-50%); width:28px; height:28px; border-radius:50%; background:rgba(239,91,91,.1); color:var(--brand-coral); display:flex; align-items:center; justify-content:center; font-size:18px; font-weight:800; }
.faq-item[open] summary::after { content:'-'; }
.faq-item p { margin:0; padding:0 26px 24px; color:#586d7b; line-height:1.9; font-size:15px; }
.form-panel { background: linear-gradient(180deg, #fff, #fbf7ef); }
.form-control { height:54px; border-radius:16px; border:1px solid rgba(16,35,49,.1); padding:12px 18px; box-shadow:none !important; }
textarea.form-control { height:auto; min-height:150px; }
.submit-btn { background: linear-gradient(135deg, var(--brand-gold), var(--brand-coral), var(--brand-teal)); color:#fff; border:0; border-radius:999px; padding:15px 24px; width:100%; font-size:13px; font-weight:800; text-transform:uppercase; letter-spacing:.12em; }

/* ----------------------------------------------------------------
     [ Responsive ]
-----------------------------------------------------------------*/

@media (max-width: 991px) {
  .top-ribbon { display:none; }
  .main-nav { margin-top:18px; padding:18px; border-radius:24px; background:var(--brand-white); box-shadow:var(--brand-shadow); }
  .header-cta { margin-top:8px; width:100%; }
  .hero-content { padding:56px 28px; }
  .hero-search-grid { grid-template-columns:1fr; }
  .hero-facts, .feature-grid, .package-grid, .reason-grid, .split-story, .contact-wrap, .about-grid, .cards-row, .contact-strip, .services-grid, .gallery-grid, .contact-layout, .blog-layout, .blog-feed-grid, .enquiry-layout, .enquiry-form-grid { grid-template-columns:1fr; }
  .hero-card { min-height:auto; }
  .packages-banner, .hero-frame, .services-banner, .gallery-banner, .contact-banner { padding:54px 28px; }
  .photo-panel, .story-photo { min-height:320px; }
  .blog-detail-image { height:280px; }
  .blog-detail-copy { padding:24px; }
  .blog-sidebar { position:static; }
  .enquiry-form-shell, .enquiry-info-card { padding:24px; }
  .faq-item summary { padding:20px 22px 20px 20px; font-size:15px; }
  .faq-item summary::after { right:18px; }
  .faq-item p { padding:0 20px 20px; font-size:14px; }
}

@media (max-width: 767px) {
  .site-footer { padding-top:60px; }
  .footer-panel { margin-bottom:18px; }
  .floating-contact { right:16px; bottom:16px; }
  .float-btn { width:52px; height:52px; font-size:22px; }
}

a.navbar-brand {
    color: #fff !important;
}

.navbar-nav li {
    float: left;
    font-size: 15px;
    text-transform: uppercase;
}

nav:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1s cubic-bezier(0.4, 0.25, 0, 1);
    transition: all 1s cubic-bezier(0.4, 0.25, 0, 1);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-box-shadow: 0 0 50px 1px rgba(0,0,0,0.05);
    box-shadow: 0 0 50px 1px rgba(0,0,0,0.05);
    background-color: #ffffff;
}

.navbar--scrolled:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.navbar-light .navbar-nav .nav-link {
  color: #fff;
  font-size: 12px;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #fff;
}

@media (max-width: 705.98px) {
  
  nav ul {
    margin-top: -60px;
    text-align: center;
  }

  nav ul li a {
    text-align: center;
  }

  nav ul li:hover {
    background-color: #fff;
  }
  .navbar-light .navbar-nav .nav-link:hover{
    color: #000;
  }

 }

/* ----------------------------------------------------------------
     [ End Navbar ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ 4 Start card style ]
-----------------------------------------------------------------*/

.feature-box {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  padding: 2.5rem;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  transition: transform .3s;
}

.feature-box__icon {
    font-size: 6rem;
    margin-bottom: .5rem;
    display: inline-block;
    background-image: linear-gradient(to right, #7ed56f, #28b485);
    -webkit-background-clip: text;
    color: transparent;
  }

  .feature-box:hover {
    transform: translateY(-1.5rem) scale(1.03);
  }

/* Card style end here */

/* Testimonial section start here */
#testimonial{
  padding: 50px 0 30px 0;
  text-align:center;
}

#testimonial p{
  font-size:32px;
  font-family: 'Josefin Sans';
  color:#000;
}

#testimonial p.customer{
  font-size:20px;
  color:#666;
}

/* ----------------------------------------------------------------
     [ End card style ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ 05 Start Showcase ]
-----------------------------------------------------------------*/

#showcase {
  height: 98vh;
  background-image:  url(../img/pexels-andreimike-1271619\ \(1\)\ \(1\)\ \(1\)\ \(1\)\ \(1\)\ \(1\).webp);
  background-size: cover;
  width: 100%;
  background-position: center;
  margin-top: -5px;
  background-attachment:fixed;
  clip-path: ellipse(150% 100% at 50% 0);
  -webkit-clip-path: ellipse(150% 100% at 50% 0);
}

.showcase-caption {
  position: relative;
  text-align: center;
  top: 150px;
}

.showcase-caption h4{
  color: #ffffff;
 
  font-size: 30px;
}

.showcase-caption h1{
  color: #ffffff;
  font-size: 50px;
  font-weight: bold;

}

.showcase-caption p{
  color: #ffffff;
  font-size: 16px;
  line-height: 2.5;
 
}

.showcase-button {
  margin-top: 50px;  
}


@media (max-width: 1205.98px) {
  
.showcase-caption {
    position: relative;
    text-align: center;
    top: 50px;
}

.showcase-caption h1 {
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    
}

.features-caption h4::after {
    display: none;
}

}
/* ----------------------------------------------------------------
     [ 05 End Showcase ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ 06 Start Features ]
-----------------------------------------------------------------*/

#features {
    background: #fff;
    padding-top: 70px;
    margin-bottom: 80px;
}

.intro h4:after {
    content: '';
    width: 60px;
    height: 2px;
    background: #2AAFC0;
    position: absolute;
    bottom: 0;
    left: calc(50% - 30px);
}

.features-caption h3{
  font-size: 35px;
  font-weight: bold;
}


.features-caption h4{
 font-size: 30px;
}


.features-caption p {
    width: 70%;
    margin: auto;
    margin-top: 60px;
    margin-bottom: 60px;
}

.features-row-2 {
  margin-top: 40px;
}

.features-section-2 {
  margin-top: 80px;
}

.features-section-2-col-1 {
  background-image: url(../img/ss.webp);
  background-position: center;
  height: 500px;
}

.features-section-2-col-2 {
  background-color: #f7f7f7;
  height: 500px;
  padding: 30px;
}

.features-section-2-col-2__content {
  width: 100%;
  background-color: #ffffff;
  padding: 20px;
  margin: auto;
  height: 100%;
  padding: 100px 10%;
  -webkit-box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}



/* ----------------------------------------------------------------
     [ End Features ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ 07 Start Services ]
-----------------------------------------------------------------*/

#services {
  padding-top: 100px;
}

.services { 
  padding-top: 100px;
  margin-bottom: 1.5rem;
  background: #fff;
  padding-top: 6rem;
  margin-bottom: 2rem;
}
.folded-corner:hover .text{
	visibility: visible;
	color: #ffffff;;
}
.Services-tab{
	margin-top:20px;
}

/*
  nav link items
*/
.folded-corner{
  padding: 25px 25px;
  position: relative;
  font-size: 90%;
  text-decoration: none;
  color: #999;
  background: transparent;
  transition: all ease .5s;
  border: 1px solid rgba(31,181,172,.9);
}
.folded-corner:hover{
	background-color: rgba(31,181,172,.9);
}

/*
  paper fold corner
*/

.folded-corner:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 0 0px 0px 0;
  border-color: #ddd #000;
  transition: all ease .3s;
}

/*
  on li hover make paper fold larger
*/
.folded-corner:hover:before {
	background-color: #D00003;
  border-width: 0 50px 50px 0;
  border-color: #eee #000;

}

.service_tab_1{
	background-color: #ffffff;
}
.service_tab_1:hover .fa-icon-image{
    color: #ffffff;
    transform: rotate(360deg) scale(1.2);
}


.fa-icon-image{
	color: rgba(31,181,172,.9);
	display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    font-size-adjust: none;
    font-stretch: normal;
    -moz-font-feature-settings: normal;
    -moz-font-language-override: normal;
    text-rendering: auto;
    transition: all .65s linear 0s;
    text-align: center;
    transition: all 1s cubic-bezier(.99,.82,.11,1.41);
}

/* ----------------------------------------------------------------
     [ End Services ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ 08 Start Portfolio ]
-----------------------------------------------------------------*/

#portfolio {
  padding-top: 100px;
}

/* ----------------------------------------------------------------
     [ End Portfolio ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ 09 Start Team ]
-----------------------------------------------------------------*/

#teams {
  background-color: #27a599;
  width: 100%;
  position: relative;
  color: #ffffff;
}

div#teams {
  padding-top: 60px;
  padding-bottom: 30px;
}

.text-center {
    text-align: center!important;
}

.teams-heading span {
  font-size: 1.25rem;
  display: block;
  text-transform: capitalize;
  color: #00bcd4;
  text-align: center;
}

.teams-heading h1 {
  font-weight: 300;
  text-align: center;
}

.heading_space {
    margin-bottom: 4.125rem;
}

.teams-item {
  background-color: #ffffff;
  height: 400px;
}

.teams-items-img img {
  display: block;
  width: 100%;
}

.teams-item {
  font-family: 'Lato', Arial, sans-serif;
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 8px;
  min-width: 250px;
  max-width: 310px;
  width: 100%;
  background-color: #ffffff;
  color: #2B2B2B;
  text-align: center;
  font-size: 16px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.teams-item * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.teams-item .profile-image {
  padding: 15% 10% 0;
}

.teams-item .profile-image img {
  max-width: 100%;
  vertical-align: top;
  position: relative;
  border-radius: 50%;
  max-width: 40%;
}

.teams-item div {
  padding: 5% 10% 15%;
}

.teams-item h3 {
  font-family: 'Oswald';
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  margin: 3px 0;
}

.teams-item h5 {
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 1px;
}

.teams-item .icons i {
  color: #999;
  display: inline-block;
  margin-right: 5px;
  font-size: 1.5em;
}

.teams-item .icons i:hover {
  color: #555;
}

.teams-item .icons i a {
  text-decoration: none;
}

@media (max-width: 705.98px) {
  .teams-item-box {
    margin: 0 auto;
    width: 300px;
  }
 }

/* ----------------------------------------------------------------
     [ End Team ]
-----------------------------------------------------------------*/

/* ----------------------------------------------------------------
     [ 10 Start Feedback ]
-----------------------------------------------------------------*/
.testimonials {
  background-color: #2c7dbc;
  margin-top: -40px;
  padding-top: 10px;
  padding-bottom: 30px;
}

.cd-testimonials-wrapper {
  position: relative;
  width: 90%;
  max-width: 768px;
  margin: 2em auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 20px 40px 70px;
  z-index: 1;
}

.cd-testimonials-all.is-visible {
  top: 50px;
}
.cd-testimonials-wrapper::after {
  /* quotation mark */
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 0;
  width: 50px;
  height: 50px;
  padding-top: 8px;
  margin-left: -25px;
  font-family: "Georgia", serif;
  color: #ffffff;
  font-size: 70px;
  font-size: 4.375rem;
  text-align: center;
  /* visible on big devices only */
  display: none;
}
@media only screen and (min-width: 768px) {
  .cd-testimonials-wrapper {
    margin: 4em auto;
    padding: 64px 50px 114px;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-testimonials-wrapper::after {
    /* quotation mark visible */
    display: block;
  }
}

.cd-testimonials {
  color: #ffffff;
  text-align: center;
}
.cd-testimonials::after {
  clear: both;
  content: "";
  display: table;
}
.cd-testimonials > li {
  position: absolute;
  opacity: 0;
}
.cd-testimonials > li:first-child {
  position: relative;
  opacity: 1;
}
.cd-testimonials p {
  font-family: "Georgia", serif;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 1em;
  padding: 0 14px;
}
@media only screen and (min-width: 768px) {
  .cd-testimonials p {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-testimonials p {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 1.6;
  }
}

.cd-author img, .cd-author .cd-author-info {
  display: inline-block;
  vertical-align: middle;
}
.cd-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 5px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
.cd-author .cd-author-info {
  text-align: left;
  line-height: 1.2;
}
.cd-author .cd-author-info li:first-child {
  font-size: 14px;
  font-size: 0.875rem;
}
.cd-author .cd-author-info li:last-child {
  font-size: 0.75rem !important;
}
@media only screen and (min-width: 768px) {
  .cd-author img {
    width: 50px;
    height: 50px;
  }
  .cd-author .cd-author-info {
    line-height: 1.4;
  }
  .cd-author .cd-author-info li:first-child {
    font-size: 16px;
    font-size: 1rem;
  }
  .cd-author .cd-author-info li:last-child {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.flex-direction-nav li {
  position: absolute;
  height: 100%;
  width: 40px;
  top: 0;
}
.flex-direction-nav li:first-child {
  left: 0;
}
.flex-direction-nav li:last-child {
  right: 0;
}
.flex-direction-nav li a {
  display: block;
  height: 100%;
  width: 100%;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.no-touch .flex-direction-nav li a:hover {
  background-color: #323234;
}
.flex-direction-nav li a::before, .flex-direction-nav li a::after {
  /* left and right arrows in css only */
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 13px;
  background-color: #ffffff;
}
.flex-direction-nav li a::before {
  -webkit-transform: translateY(-35px) rotate(45deg);
  -moz-transform: translateY(-35px) rotate(45deg);
  -ms-transform: translateY(-35px) rotate(45deg);
  -o-transform: translateY(-35px) rotate(45deg);
  transform: translateY(-35px) rotate(45deg);
}
.flex-direction-nav li a::after {
  -webkit-transform: translateY(-27px) rotate(-45deg);
  -moz-transform: translateY(-27px) rotate(-45deg);
  -ms-transform: translateY(-27px) rotate(-45deg);
  -o-transform: translateY(-27px) rotate(-45deg);
  transform: translateY(-27px) rotate(-45deg);
}
.flex-direction-nav li:last-child a::before {
  -webkit-transform: translateY(-35px) rotate(-45deg);
  -moz-transform: translateY(-35px) rotate(-45deg);
  -ms-transform: translateY(-35px) rotate(-45deg);
  -o-transform: translateY(-35px) rotate(-45deg);
  transform: translateY(-35px) rotate(-45deg);
}
.flex-direction-nav li:last-child a::after {
  -webkit-transform: translateY(-27px) rotate(45deg);
  -moz-transform: translateY(-27px) rotate(45deg);
  -ms-transform: translateY(-27px) rotate(45deg);
  -o-transform: translateY(-27px) rotate(45deg);
  transform: translateY(-27px) rotate(45deg);
}
@media only screen and (min-width: 768px) {
  .flex-direction-nav li {
    width: 50px;
  }
}
@media only screen and (min-width: 1170px) {
  .flex-direction-nav li a::before, .flex-direction-nav li a::after {
    background-color: #5e5e63;
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
  }
  .flex-direction-nav li a:hover::before, .flex-direction-nav li a:hover::after {
    background-color: #ffffff;
  }
}

.cd-see-all {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 30px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  text-transform: uppercase;
  color: #f7f7fe;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
  -webkit-transition: color, 0.2s;
  -moz-transition: color, 0.2s;
  transition: color, 0.2s;
}
.no-touch .cd-see-all:hover {
  color: #79b6e4;
}

.cd-testimonials-all {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-testimonials-all .cd-testimonials-all-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
}
.cd-testimonials-all .cd-testimonials-all-wrapper > ul {
  width: 90%;
  max-width: 1170px;
  margin: 4em auto;
}
.cd-testimonials-all .cd-testimonials-all-wrapper > ul::after {
  clear: both;
  content: "";
  display: table;
}
.cd-testimonials-all .cd-testimonials-item {
  margin-bottom: 2em;
  opacity: 0;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translate3d(0, 0, 0) scale(0.4);
  -moz-transform: translate3d(0, 0, 0) scale(0.4);
  -ms-transform: translate3d(0, 0, 0) scale(0.4);
  -o-transform: translate3d(0, 0, 0) scale(0.4);
  transform: translate3d(0, 0, 0) scale(0.4);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform .3s, opacity .3s;
  -moz-transition: -moz-transform .3s, opacity .3s;
  transition: transform .3s, opacity .3s;
}
.cd-testimonials-all p {
  position: relative;
  background: #79b6e4;
  color: #ffffff;
  padding: 2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
  border-radius: 0.25em;
  margin-bottom: 1em;
}
.cd-testimonials-all p::after {
  /* creating the triangle in css */
  content: '';
  position: absolute;
  top: 100%;
  left: 2em;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-top-color: #79b6e4;
}
.cd-testimonials-all .cd-author {
  text-align: left;
  margin-left: 1.5em;
}
.cd-testimonials-all .cd-author img {
  box-shadow: 0 0 0 transparent;
}
.cd-testimonials-all.is-visible {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-testimonials-all.is-visible .cd-testimonials-all-wrapper {
  -webkit-overflow-scrolling: touch;
}
.cd-testimonials-all.is-visible .cd-testimonials-item {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  -moz-transform: translate3d(0, 0, 0) scale(1);
  -ms-transform: translate3d(0, 0, 0) scale(1);
  -o-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
@media only screen and (min-width: 768px) {
  .cd-testimonials-all .cd-testimonials-item {
    width: 46%;
    margin: 0 2% 3em;
  }
  .cd-testimonials-all .cd-author {
    margin-left: 1em;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-testimonials-all .cd-testimonials-item {
    width: 30%;
    margin: 0 1.6666% 3em;
  }
}

.close-btn {
  position: fixed;
  display: block;
  width: 40px;
  height: 40px;
  top: 65px;
  right: 5%;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.close-btn::before, .close-btn::after {
  /* close icon in css */
  content: '';
  position: absolute;
  display: inline-block;
  width: 2px;
  height: 24px;
  top: 8px;
  left: 19px;
  background-color: #39393c;
}
.close-btn::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.close-btn::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}


/* ----------------------------------------------------------------
     [ End Feedback ]
-----------------------------------------------------------------*/

/* ----------------------------------------------------------------
     [ 11 Start Blog ]
-----------------------------------------------------------------*/

.blog {
  background-color: #6dbdc3;
  padding-top: 6rem;
  padding-bottom: 3rem;
  margin-top: -4rem;

}
.tt{
    background: black;
    width: 100px;
    height: 30px;
    text-align: center;
    font-size: 24px;
                                             
}

figure.blog-item {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  min-width: 220px;
  max-width: 310px;
  width: 100%;
  background: #1a1a1a;
  color: #ffffff;
  text-align: left;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
}
figure.blog-item * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
figure.blog-item .image {
  position: relative;
}
figure.blog-item img {
  max-width: 100%;
  vertical-align: top;
}
figure.blog-item i {
  position: absolute;
  top: 7px;
  left: 12px;
  font-size: 32px;
  opacity: 0;
  z-index: 2;
  -webkit-transition-delay: 0;
  transition-delay: 0;
}
figure.blog-item h3 {
  margin: 0 0 10px;
  font-weight: 200;
  font-size: 23px;

}
figure.blog-item p {
  margin: 0;
}
figure.blog-item:before,
figure.blog-item:after {
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
figure.blog-item:before {
  background-color: #20638f;
  -webkit-transform: skew(-45deg) translateX(-150%);
  transform: skew(-45deg) translateX(-150%);
  border-right: 1px solid #20638f;
}
figure.blog-item:after {
  background-color: #962d22;
  -webkit-transform: skew(-45deg) translateX(-175%);
  transform: skew(-45deg) translateX(-175%);
  border-right: 1px solid #962d22;
}
figure.blog-item figcaption {
  padding: 25px;
  background-color: #ffffff;
  color: #000000;
  position: relative;
  font-size: 0.9em;
}
figure.blog-item figcaption p {
  margin-bottom: 15px;
}
figure.blog-item figcaption:before {
  width: 100px;
  height: 100px;
  position: absolute;
  bottom: 100%;
  right: 0;
  content: '';
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
  background-color: #20638f;
  -webkit-transform: skew(-45deg) translateX(50%);
  transform: skew(-45deg) translateX(50%);
  border-right: 1px solid #20638f;
}
figure.blog-item .read-more {
  display: inline-block;
  width: auto;
  border: 2px solid #20638f;
  padding: 0.4em 0.6em;
  color: #20638f;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9em;
  text-transform: uppercase;
}
figure.blog-item .read-more:hover {
  background-color: #20638f;
  color: #ffffff;
}
figure.blog-item .date {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #fff;
  max-height: 48px;
  max-width: 48px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 1;
}
figure.blog-item .date span {
  display: block;
  line-height: 24px;
}
figure.blog-item .date .month {
  font-size: 14px;
}
figure.blog-item:hover i,
figure.blog-item.hover i {
  opacity: 0.7;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
figure.blog-item:hover:before,
figure.blog-item.hover:before {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: skew(-45deg) translateX(-50%);
  transform: skew(-45deg) translateX(-50%);
}
figure.blog-item:hover:after,
figure.blog-item.hover:after {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transform: skew(-45deg) translateX(-75%);
  transform: skew(-45deg) translateX(-75%);
}

@media (max-width: 705.98px) {
  .blog-item-box {
    margin: 0 auto;
    width: 300px;
  }

  figure.snip1197 blockquote {
      position: relative;
      padding: 30px;
      font-size: 0.8em;
      font-weight: 500;
      text-align: left;
      margin: 0;
      line-height: 1.6em;
      font-style: italic;
  }
 }

 /* ----------------------------------------------------------------
     [ End Blog ]
-----------------------------------------------------------------*/

/* ----------------------------------------------------------------
     [ 12 Start Contact ]
-----------------------------------------------------------------*/
.contact {
  padding-top: -30px;
}
.container .map {
  width: 100%;
  height: 200px;
}

iframe {
  width: 100%;
  border: none;
}
.contact form {
  margin: 3rem;
}

.contact-icon {
  text-align: center;
  font-size: 35px;
}
.text-blue {
  color: rgb(0, 171, 201);
}

.contact-heading {
  margin-top: 2rem;
  text-align: center;
}

.form-input-style {
  border: none;
  border-bottom-color: currentcolor;
  border-bottom-style: none;
  border-bottom-width: medium;
  border-bottom-color: currentcolor;
  border-bottom-style: none;
  border-bottom-width: medium;
  border-bottom: 1px solid #ddd;
  box-shadow: none;
  background-color: #ddd;
  font-size: 13px;
  height: 45px;
}


.form-input-style-message {
  border: none;
  border-bottom-color: currentcolor;
  border-bottom-style: none;
  border-bottom-width: medium;
  border-bottom-color: currentcolor;
  border-bottom-style: none;
  border-bottom-width: medium;
  border-bottom: 1px solid #ddd;
  box-shadow: none;
  background-color: #ddd;
  font-size: 13px;
}

@media (max-width: 705.98px) {
  
  .contact p {
    text-align: center;
  }

  

 }

 /* ----------------------------------------------------------------
     [ End Contact ]
-----------------------------------------------------------------*/



/* ----------------------------------------------------------------
     [ End Footer ]
-----------------------------------------------------------------*/

/* ----------------------------------------------------------------
     [ 14 Start Loader ]
-----------------------------------------------------------------*/

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #fff;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}

/* ----------------------------------------------------------------
     [ 14 End Loader ]
-----------------------------------------------------------------*/


/*faq--------*/
        
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
  text-align: center;
  font-size: 32px;
}
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}
.faq-question {
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f1f1f1;
  border-radius: 5px;
}                                                 
.faq-question:hover {
  background-color: #e0e0e0;
}
.faq-answer {
  display: none;
  padding: 10px;
  font-size: 16px;
  color: #555;
  background-color: #f9f9f9;
  border-radius: 5px;
  margin-top: 5px;
}
.faq-question.active + .faq-answer {
  display: block;
}
.arrow {
  transition: transform 0.3s;
}
.faq-question.active .arrow {
  transform: rotate(180deg);
}
/* Responsive Design */
@media screen and (max-width: 600px) {
  .faq-container {
      padding: 10px;
  }
  h1 {
      font-size: 24px;
  }
  .faq-question {
      font-size: 16px;
  }
  .faq-answer {
      font-size: 14px;
  }
}
/*faq end */

/* about */

.abou {
  background: url(../img/slider\ \(1\)\ \(1\)\ \(1\)\ \(1\).webp);
  background-size: cover;
  background-position: center;
  height: 500px;
  position: relative;
  overflow: hidden;
}
.abou1 {
  background: url(../img/contact\ us.webp);
  background-size: cover;
  background-position: center;
  height: 500px;
  position: relative;
  overflow: hidden;
}
.about {

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3em;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  animation: fadeIn 5s infinite alternate;
}
.about h1{
font-size: 50px;
}
.about h2{
font-size: 30px;
text-align: center;
margin-top: -80px;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@media screen and (max-width: 600px) {
  .abou{
 margin-top: 0px;
  }
  .about{
    width: 600px;

  }
  .abou1{
    
  background:url(../img/22\ \(1\)\ \(1\).webp);
height: 450px;
  width: 480px;
  }
  .about h1{
font-size: 34px;
margin-top: 80px;
     }
}
/* about end */

/* mera about*/


.po{

  width: 80%;
  height: 200px;
  margin: auto;
}
.o:hover{
  background:linear-gradient(rgb(174, 193, 230),#082674);
}

.o{
  background-color:#082674;
  width: 360px;
  height: 160px;
  margin-left: 425px;
  margin-top: 20px;
   padding: 20px;

}
.pu{
  
  width: 350px;
  margin-left: 45px;
  color: white;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: bold;
}
.m{

  width: 100px;
  height: 50px;
  margin-top: -80px;
  margin-left: -10px;
}
.i:hover{
  background:linear-gradient(rgb(174, 193, 230),#082674);
}

.i{
  background-color:#082674;
  width: 370px;
  height: 160px;
  float: left;
  margin-top: -200px;
  margin-left: 160px;
  padding: 20px;
  
}
.yu{
  
  width: 350px;
  margin-left: 65px;
  color: white;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: bold;
}
.k{

  width: 100px;
  height: 50px;
  margin-top: -80px;
  margin-left: -15px;
}
.f:hover{
  background:linear-gradient(rgb(174, 193, 230),#082674);
}

.f{
  background-color:#082674 ;
  width: 370px;
  height: 160px;
  border: 0;
  border-radius: 0%;
  padding: 20px;
  margin-top: -200px;
  margin-left: 1000px;
}
.nn{
  
  width: 350px;
  margin-left: 50px;
  color: white;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: bold;
  margin-top: -10px;
}
.bv{

  width: 100px;
  height: 50px;
  margin-top: -80px;
  margin-left: -20px;
}



.vision{
  background:url(../img/skii\ \(1\).webp);
  background-size: cover;
  width:100%;
  height: 750px;
}
.opa{
  background-color:rgb(10, 10, 10);
opacity: 0.8;
  width: 100%;
  height: 750px;
}

.mission{
  
  width:500px;
  font-weight: bold;
  font-size: 30px;
  margin: auto;
  text-align: center;
  padding: 80px;
  color: white;   
  
   }
.miss{
  background:url(../img/tambu\ \(1\).webp);
  background-size: cover;
  width:400px;
  height: 250px;
  margin-left: 280px;
  margin-top: -75px;
  padding: 20px;
  
}
.mi{
  
  width: 350px;
  height:210px ;
  border: 2px solid white;
}
.vi{
  background-color: white;
  width: 400px;
  height: 190px;
  margin-left: 620px;
  margin-top: -222px;
  box-shadow: 1px 1px 1px 1px rgb(219, 211, 211);
  padding: 15px;
}
.d{
  background-color: none;
  border: none;
  border-radius: 0%;
  color: black;
  font-weight: bold;
  width: 350px;
  margin-left: 60px;
  margin-top: 20px;
}
.our{
  background:url(../img/hike\ \(1\).webp);
  background-size: cover;
  width:400px;
  height: 250px;
  margin-top: 90px;
  margin-left: 930px;
  padding: 20px;
}
.oi{
  
  width: 350px;
  height:210px ;
  border: 2px solid white;
}
.hi{
  background-color: white;
  width: 400px;
  height: 190px;
  margin-left: 700px;
  margin-top: -220px;
  box-shadow: 1px 1px 1px 1px rgb(219, 211, 211);
  padding: 15px;
}
.xo{
  background-color: none;
  border: none;
  border-radius: 0%;
  color: black;
  font-weight: bold;
  width: 380px;
  margin-left: 5px;
  margin-top: 20px;
}
.why{
  background:linear-gradient(#000033,rgb(23, 23, 105));
  width: 75%;
  height: 800px;
  
  margin-left:950px ;
  
}
.go{
  
  width: 500px;
  font-weight: 800;
  font-size: 14px;
  margin-left: 430px;
  margin-top: 85px;
  color: white;
}
.choose{
  
  width: 700px;
  height: 100px;
margin-left: 430px;
margin-top: 25px;
font-weight: 800;
font-size: 35px;
color: white;
}
.best{
  
  width: 700px;
  height: 120px;
  margin-left: 430px;
  padding: 20px;
}
.best h1{
  font-size: 18px;
  font-weight: bold;
  margin-left: 80px;
  color: white;
  
}
.best h2{
  font-size: 14px;
  font-weight: bold;
  margin-left: 80px;
  margin-top: -10px;
  color: white;
line-height: 1.5;
}
.lo{
  background:url(../img/icon15.webp);
  width: 100px;
  height: 100px;
  margin-top: -110px;
  margin-left: -20px;
}
.amaze{

  width: 700px;
  height: 120px;
  margin-top: 30px;
  margin-left: -20px;
  padding: 20px;
}
.amaze h1{
  font-size: 18px;
  font-weight: bold;
  margin-left: 80px;
  
}
.amaze h2{
  font-size: 14px;
  font-weight: bold;
  margin-left: 80px;
  margin-top: -10px;
  color: white;
line-height: 1.5;
}
.ao{
  background:url(../img/icon16.webp);
  width: 100px;
  height: 100px;
  margin-top: -90px;
  margin-left: -30px;
}
.ser{

  width: 700px;
  height: 120px;
  margin-top: 30px;
  margin-left: -20px;
  padding: 20px;
}
.zo{
  background:url(../img/icon17.webp);
  width: 100px;
  height: 100px;
  margin-top: -80px;
  margin-left: -30px;
}

.whi{
background:url(../img/map\ \(1\).webp);
background-size: cover;
width: 600px;
height: 700px;
margin-left: 200px;
z-index: 1;
position: relative;
margin-top: 55px;
}


@media screen and (max-width: 1024px) {
  .why {
    width: 100%;
    height: auto;
    float: none;
  }
  .go, .choose, .best, .amaze, .ser {
    width: 90%;
    margin: 20px auto;
    text-align: center;
        font-size: 24px;
  }
  .best h1, .amaze h1, .best h2, .amaze h2 {
    margin-left: 0;
    text-align: center;
  }
  .lo, .ao, .zo {
    margin: 10px auto;
    display: block;
  }
  .whi {
    width: 90%;
    height: auto;
    margin: 20px auto;
  }
}

@media screen and (max-width: 768px) {
  .why {
    height: auto;
  }
  .go, .choose {
    font-size: 24px;
    text-align: center;
    margin-left: 0;
  }
  .best, .amaze, .ser {
    width: 100%;
    padding: 10px;
  }
  .best h1, .best h2, .amaze h1, .amaze h2 {
    font-size: 16px;
    text-align: center;
  }
  .whi {
    width: 100%;
    margin-left: 0;
  }
}

@media screen and (max-width: 480px) {
  .go, .choose {
    font-size: 24px;
    text-align: center;
    margin: 10px auto;
  }
  .best, .amaze, .ser {
    width: 100%;
    height: auto;
    padding: 10px;
  }
  .best h1, .amaze h1 {
    font-size: 14px;
  }
  .best h2, .amaze h2 {
    font-size: 12px;
  }
  .lo, .ao, .zo {
    width: 80px;
    height: 80px;
    margin: auto;
  }
  .whi {
    width: 100%;
    height: auto;
  }
}


@media screen and (max-width:600px)  {


  .e{
      background: url(../bg.jpg) ;
     margin-left: 2px;
  }
.x{
  width: 487px;
}
.x h1{
  width:485px;
  background-color: green;
  font-size: 24px;
  text-align: center;
  margin-left: -10px;
}
.x h2{
  font-size: medium;
  font-weight: 800;
  text-align: center;
  }
  .x h3{
      font-size: medium;
  }
  .po{
      
    width: 400px;
    float: left;
    
}
.i{
    float: left;
    margin-left: 40px;
    margin-top: -20px;
    width: 400px; 
    text-align: center; 
}
.o{
    float: left;
    margin: auto;
    width:400px;
    text-align: center;
    margin-left: 40px;
    
}

.f{
    float: left;
    margin-left: 40px;
    margin-top: 20px;
    width: 400px;
    text-align: center;
}}
@media screen and (max-width: 1024px) {
  .vision, .opa {
    height:1150px;
    float: left;
  }

  .mission {
    width: 90%;
    font-size: 24px;
    padding: 40px;
    float: left;
  }

  .miss, .our {
    width: 90%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    float: left;
  }

  .mi, .oi {
    width: 100%;
    height: auto;
    float: left;
    height: 200px;
  }

  .vi, .hi {
    width: 90%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    padding: 10px;
    float: left;
  }
}

/* For mobile screens */
@media screen and (max-width: 768px) {
  .mission {
    font-size: 20px;
    padding: 20px;
    float: left;
  }

  .miss, .our {
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-right: 0;
    float: left;
  }

  .vi, .hi {
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-right: 0;
    padding: 10px;
    float: left;
  }

  .d, .xo {
    width: 100%;
    margin-left: 0;
    float: left;
    background: transparent;
  }
}









/* mera about end */


/*query */

.xc {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100px;
  max-width: 600px;
  margin: auto;
  margin-top: 170px;
}
input, textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  margin-top: 30px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.xc button {
  background: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
button:hover {
  background: #0056b3;
}
@media screen and (max-width: 600px) {
  .xc {
      padding: 15px;
      max-width:500px;
  }
}

/*three*/

.con {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}

.con-box {
  background-color: #13294b;
  color: white;
  text-align: center;
  padding: 20px;
  width: 350px;
  height: 200px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  
}

.con-box:hover {
  transform: scale(1.05);
  
  box-shadow: 5px 5px 5px 5px #13294b;
}

.con-box img {
  width: 50px;
  
  margin-bottom: 10px;
}

.con-box h3 {
  margin: 10px 0;
  font-size: 18px;
}

.con-box p {
  margin: 5px 0;
  font-size: 16px;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
  .con {
      flex-direction: column;
      align-items: center;
  }

  .con-box {
      width:768px;
      max-width: 350px;
  }
}
/*three end */

/* header */
.r{
  background-color: white;
  width: 100%;
  padding: 10px;
}
.gg{

  justify-content: space-between;
  align-items: center;
  background-color: #fcfcfc;
  color: white;
  padding:20px;
  width: 80%;
 display: flex;
 margin: auto;
 height: 5px;
}

.ff {
 display: flex;
  gap: 15px;
  font-size: 14px;
}
.hh{
display: flex;
  gap: 10px;
  color: black;
}
.hh button {
  padding:12px;
  cursor: pointer;
  font-size: 14px;
  
}
.admin-btn {
  
  border: solid 1px rgb(84, 176, 230);
  color: rgb(22, 18, 18);
  width: 90px;
  height: 40px;
  font-weight: bold;
}
.login-btn {
  border: solid 1px rgb(9, 11, 12);
  background-color: black;
  color: rgb(248, 243, 243);
  width: 90px;
  height: 40px;
  font-weight: bold;
}
.admin-btn:hover{
  background-color: #007bff;
}
.login-btn:hover{
  background-color: black;
}
@media screen and (max-width: 768px) {
  .gg {
    width: 100%;
    padding: 15px;
    height: auto;
   
    align-items: center;
    text-align: center;
  }

  .ff, .hh {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .hh button {
    width: 100%;
  }
}

/* For mobile screens */
@media screen and (max-width: 480px) {
  .gg {
    padding: 10px;
    width: 100%;
  }

  .ff, .hh {
    gap: 5px;
  }

  .admin-btn, .login-btn {
    width: 100%;
    height: 35px;
    font-size: 12px;
  }
}




