/**
* Template Name: Dewi
* Template URL: https://bootstrapmade.com/dewi-free-multi-purpose-html-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #000000; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000000; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ff6000; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #ff4a17; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #65fff2; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #000000; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ff4a17; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f1f4fa;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000910;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* pulsating-play-btn  */

.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
#header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: #000910;
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

#header {
  height: 64px !important;
  min-height: 64px !important;
  padding: 0 !important;
}



#header .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
}



#header .logo img,
#header img.site-logo {
  height: 42px !important;
  max-height: 42px !important;
  width: auto !important;
}

#header .logo {
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
}

.site-logo:hover {
  transform: rotate(360deg) scale(1.05);
  transition: transform 0.6s ease;
}


.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 2px 7px;
  margin: 0 0 0 1px;
  border-radius: 15px;
  transition: 0.3s;
  border: 3px solid rgb(255, 64, 0);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: #ff4000;
}

.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

#header .container-fluid {
  display: flex;
  align-items: center;
  gap: 25px;                 /* controls spacing globally */
}

 
/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(21, 34, 43, 0.85);
}


.header-social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 15px;
}

/* Icons styling */
.header-social-icons a {
  font-size: 16px;
  color: #ffbf00;
  transition: 0.1s;
}

/* Hover colors */
.header-social-icons a:hover {
  color: #00ffff;   /* aqua hover */
  transform: scale(1.2);
}

.icon-row {
    gap: 14px; /* adjust between 2px – 8px as needed */
}

.icon-row a {
    display: flex;
    align-items: center;
}

.icon-row .icon-img {
    width: 90px;   /* Reduce width to prevent overlap */
    height: auto;
    display: block;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
/* @media (min-width: 1200px) { */
@media (min-width: 992px) {
  .navmenu {
    padding: 0;
  }

  /* Hide mobile toggle on desktop */
@media (min-width: 992px) {
  .mobile-nav-toggle {
    display: none !important;
  }
}

#navmenu {
  margin-left: 40px;
}

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu > ul {
  justify-content: flex-end;
  gap: 2px;
  }


  .navmenu li {
    position: relative;
      margin: 0;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 4px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 14px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: capitalize;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: color-mix(in srgb, var(--nav-color) 90%, white 15%);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
/* @media (max-width: 1199px) { */
  @media (max-width: 991px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* =========================
   FOOTER – GLOBAL (RESET)
========================= */

.footer {
  background: #050b12;
  color: #ffffff;
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.footer * {
  font-family: inherit;
  box-sizing: border-box;
}

/* =========================
   FOOTER TOP SPACING
========================= */

.footer-top {
  padding: 20px 0 40px;
}

/* =========================
   COLUMN BASE STYLE (ALL 4)
========================= */

.footer-about,
.footer-links,
.footer-newsletter {
  font-size: 14px;
  line-height: 1.7;
}

.footer p,
.footer li,
.footer a {
  font-size: 13px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 8px;
}

/* Reduce line-height ONLY for center footer columns */

.footer-links li {
  padding: 4px 0;          /* was 6px */
}

.footer-links a {
  line-height: 0.4;        /* tighter than global 1.7 */
}

.footer-links li i {
  margin-top: 0;         /* better vertical alignment */
}


/* =========================
   GK CHANNEL LOGO – SPECIAL
========================= */

/* Remove background styling from GK Channel logo only */
.social-links .social-logo {
  background: transparent !important;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
}


/* Force image to grow */
.footer .social-links a.social-logo img {
  display: block;
  width: 100px !important;     /* 👈 Bigger logo */
  max-width: none !important;
  height: auto !important;
}

/* Keep hover clean */
.footer .social-links a.social-logo:hover {
  background: transparent !important;
  transform: scale(1.05);
}


/* =========================
   FOOTER HEADINGS (UNIFORM)
========================= */

.footer h4,
.footer-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer h4::after,
.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: #0073ff;
}

/* =========================
   LINKS (CENTER COLUMNS)
========================= */

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}

.footer-links li i {
  font-size: 13px;
  color: #0091ff;
  line-height: 1.2;
}

.footer-links a {
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: #ff9000;
  padding-left: 4px;
}

/* =========================
   LEFT COLUMN (CONTACT)
========================= */

.footer-contact i {
  color: #0091ff;
  margin-right: 6px;
  font-size: 14px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.footer-logo {
  max-width: 200px;
}

/* Phone buttons */
.phone-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.phone-buttons .btn-getstarted {
  background: #0091ff;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 15px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.phone-buttons .btn-getstarted:hover {
  background: #ff6000;
}

/* =========================
   RIGHT COLUMN (ABOUT)
========================= */

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  color: #ffffff;
}

/* =========================
   SOCIAL ICONS (UNIFIED)
========================= */

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

.social-links a {
  width: 36px;
  height: 36px;
  background: #0d6efd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #ff6000;
}

.social-links i {
  font-size: 16px;
}


html, body {
  overflow-x: hidden;
  width: 100%;
}

@media (max-width: 576px) {
  #footer .row {
    margin-left: 0;
    margin-right: 0;
  }

  #footer .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Footer About Image – Scoped Styling */
.footer-newsletter .footer-img {
  margin-top: 12px;
  text-align: left; /* change to center if needed */
}

.footer-newsletter .footer-img img {
  max-width: 80%;

  height: auto;
  display: block;
  border-radius: 8px;   /* optional, remove if not needed */
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .footer-newsletter .footer-img {
    text-align: center;
  }

  .footer-newsletter .footer-img img {
    max-width: 70%;
    margin: 0 auto;
  }
}



/* =========================
   COPYRIGHT
========================= */

.footer .copyright {
  border-top: 2px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  font-size: 13px;
  color: #ffffff;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .footer-top {
    padding: 50px 0 30px;
  }

  .footer h4::after,
  .footer-title::after {
    left: 0;
  }
}

@media (max-width: 768px) {
  .footer {
    text-align: left;
  }

  .social-links {
    margin-bottom: 20px;
  }

  .phone-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .footer {
    font-size: 13px;
  }

  .footer h4,
  .footer-title {
    font-size: 15px;
  }

  .social-links {
    flex-wrap: wrap;
  }
}

/* =========================
   GK CHANNEL LOGO – BORDER FIX
========================= */

/* Force-remove rounding from GK Channel logo image */
.footer .social-links a.social-logo img {
  border-radius: 0 !important;     /* 🔥 completely flat */
  overflow: visible !important;
}

/* Safety: also prevent rounding on anchor */
.footer .social-links a.social-logo {
  border-radius: 0 !important;
}

/* CONTACT 1 */

.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 10px 	#006699;
  padding: 20px 0 30px 0;
  border-radius: 30px;
}

.contact .info-box i {
  font-size: 32px;
  color: #0073ff;
  border-radius: 50%;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border: 2px dotted  #006699;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  color:#000;
}

.contact .info-box a {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}

.contact .info {
  border: 2px solid #006699;
  border-radius: 5px;
padding-top: 10px;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

body{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

/* ===============================
   CONTACT SECTION – RESPONSIVE
================================ */

.contact {
  overflow-x: hidden;
}

/* MAP CONTAINER */
.contact .info {
  width: 100%;
  height: 100%;
}

/* Make map container stretch */
.contact .info {
  width: 100%;
  height: 100%;
  display: flex;
  padding-bottom: 10px;
}

/* Make iframe fill the container */
.contact .info iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
  border-radius: 6px;
  display: block;
}


/* FORM CONTAINER */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;              /* FIX */
  max-width: 100%;          /* FIX */
  border: 2px solid #006699;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 4px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  background: #fff;
}

/* TITLE */
.contact-left-title h3 {
  font-weight: 600;
  color: #0052b7;
  font-size: 32px;
  margin: 0 auto;
  text-align: center;
}

/* INPUTS */
.contact-inputs {
  width: 100%;              /* FIX */
  height: 50px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  color: #0052b7;
  background-color: #f8f8f8;
  outline: none;
}

.contact-inputs option {
  color: #000;
}

.contact-inputs::placeholder {
  color: #000;
}

.contact-inputs:focus {
  border: 2px solid #006699;
}

/* BUTTON */
.contact-left button {
  padding: 12px;
  font-size: 218x;
  color: #fff;
  border: none;
  border-radius: 8px;
  background-color: #0052b7;
  cursor: pointer;
  width: 100%;
}

/* ===============================
   MOBILE VIEW FIX
================================ */

@media (max-width: 991px) {

  .contact iframe {
    height: 280px;          /* Smaller map */
  }

  .contact-left {
    margin-top: 20px;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 575px) {

  .contact-left-title h3 {
    font-size: 26px;
  }

  .contact iframe {
    height: 250px;
  }
}


.download-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

section.download-section-wrapper {
  padding: 20px 0 !important;
}

.download-section-wrapper .container,
.download-section-wrapper .row {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.download-section-wrapper .section-title h2 {
  margin-bottom: 10px;   /* reduce this as needed */
}

.download-section {
  margin: 10px auto;   /* was 40px auto */
}

.download-section-wrapper .section-title {
  margin-bottom: 5px !important;
  padding-bottom: 0 !important;
}


.download-section-wrapper h2,
.download-section-wrapper p {
  margin-bottom: 20px !important;
}

.download-box {
  background: #c2c2c2;
  color: #000000;
  padding: 12px 20px;
  border-radius: 14px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.download-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  color: #0073ff;
}

@media (max-width: 992px) {
  .download-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .download-section {
    grid-template-columns: 1fr;
  }
}

/* =========================
   GK BOOK SECTION — BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== SECTION ===== */
.gk-book-section {
  width: 100%;
  height: 110vh;
  background: #eee;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== BOOK CONTAINER ===== */
.gk-book {
  width: 100%;
  max-width: 1000px;
  height: 105vh;

  background: #fff;
  border-radius: 20px;
  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ===== TRACK (SLIDER) ===== */
.gk-track {
  display: flex;
  height: 100%;

  transition: transform 0.5s ease;
}

/* ===== EACH PAGE ===== */
.gk-page {
  min-width: 100%;
  height: 100%;
  position: relative;

  padding: 20px;
}

/* ===================================== */
/* ===== COVER PAGE ===== */
/* ===================================== */

.gk-cover {
  text-align: center;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
}

.gk-cover h1 {
  margin-top: 0px;
  font-size: 38px;
  color: #fff;
}

.gk-cover h3 {
  margin: 10px 0 20px;
  font-size: 26px;
  font-weight: normal;
  color: #ff9900;
}

.gk-cover img {
  width: 90%;
  max-height: 75%;
  object-fit: cover;
  border-radius: 15px;
}

/* NEXT BUTTON */
.gk-next-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;

  background: #fff;
  color: #004396;

  border: none;
  padding: 8px 16px;

  border-radius: 20px;
  cursor: pointer;

  font-weight: bold;
}

.gk-next-btn:hover {
  background: #ddd;
}

/* ===== CONTENT PAGE ===== */
.gk-top-bar {
  position: absolute;
  top: 10px;
  right: 15px;
}

.gk-top-bar button {
  background: #004396;
  color: #fff;
  border: none;

  padding: 5px 12px;
  border-radius: 15px;
  cursor: pointer;
}

.gk-content-page {
  position: relative;
  background: url("/assets/img/gkblogcoverpage1.png") center/cover no-repeat;
  border-radius: 20px;
  overflow: hidden;
  padding: 20px;
  color: #fff;
}

/* DARK OVERLAY */
.gk-content-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

/* KEEP CONTENT ABOVE IMAGE */
.gk-content-page h2,
.gk-list {
  position: relative;
  z-index: 2;
}

/* TITLE */
.gk-content-page h2 {
  margin-top: 60px;
  margin-bottom: 80px;
  text-align: center;
  color: #00ffff;
}

/* LIST ITEMS */
.gk-list div {
  background: rgba(255,255,255,0.2);
  padding: 6px;
  margin: 6px 20px;

  border-radius: 10px;
  font-size: 14px;

  text-align: left;
  cursor: pointer;

  transition: 0.3s;
}

/* HOVER EFFECT */
.gk-list div:hover {
  background: rgba(255,255,255,0.35);
  transform: translateX(5px);
}

@media (max-width: 600px) {

  .gk-content-page {
    padding: 15px;
    border-radius: 12px;
  }

  .gk-content-page h2 {
    font-size: 20px;
    margin-top: 30px;
  }

  .gk-list div {
    font-size: 12px;
    padding: 10px;
    margin: 10px 10px;
  }

  /* TOUCH FRIENDLY BUTTONS */
  .gk-prev,
  .gk-next {
    font-size: 13px;
    padding: 5px 10px;
    bottom: 10px;
  }
}

/* ===== TEXT PAGE LAYOUT ===== */
.gk-page {
  position: relative;
  padding: 50px 30px 50px;  /* top | sides | bottom */
}

.gk-text {
  max-width: 900px;
}

/* ===== TITLE ===== */
.gk-page h2 {
  margin: 0 20px 10px;   /* left-right margin */
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  font-family: Century Gothic;
  color: #00538a;
}

/* ===== TEXT CONTAINER ===== */
.gk-text {
  margin: 0 20px;   /* left & right margin */
}

/* ===== PARAGRAPHS ===== */
.gk-text p {
  margin-bottom: 12px;

  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  text-align: justify;   /* 🔥 important */
  color: #000000;
}

/* FIRST PARAGRAPH (OPTIONAL STYLE) */
.gk-text p strong {
  font-weight: 600;
}
/* ===================================== */
/* ===== BOTTOM NAV ===== */
/* ===================================== */

.gk-prev,
.gk-next,
.gk-page-number {
  position: absolute;
  bottom: 15px;
  font-size: 14px;
}

/* LEFT */
.gk-prev {
  left: 15px;
  background: #333;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  cursor: pointer;
}

/* RIGHT */
.gk-next {
  right: 15px;
  background: #004396;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  cursor: pointer;
}

/* CENTER */
.gk-page-number {
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
}


/* ===================================== */
/* ===== RESPONSIVE ===== */
/* ===================================== */

@media (max-width: 600px) {

  .gk-book {
    width: 95%;
    height: 95vh;
  }

  .gk-cover h1 {
    font-size: 22px;
  }

  .gk-text p {
    font-size: 14px;
  }
}

@media (max-width: 600px) {

  .gk-page {
    padding: 50px 15px 40px;
  }

  .gk-page h2 {
    font-size: 20px;
    margin: 0 10px 8px;
  }

  .gk-text {
    margin: 0 10px;
  }

  .gk-text p {
    font-size: 10px;
    line-height: 1.4;
  }
}


/* ===== BLOGGER HERO SECTION ===== */

/* .blog-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: 10px;
  overflow: hidden;
} */

.blog-hero {
  position: relative;
  width: 100%;
  height: 100vh;        /* adjust if needed */
  overflow: hidden;
}

/* make image behave like background */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;     /* fills both width & height */
  object-position: center;
  z-index: 0;
}

.gk-page:first-child {
  position: relative;
  background: linear-gradient(135deg, #004390, #ff6000);
}

.gk-page:first-child img {
  position: relative;
  z-index: 2;
}

/* keep text above image */
.hero-content {
  position: relative;
  z-index: 1;
}

.blog-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: 600;
  margin-top: 100px;
  color: #000056;
  text-decoration: underline;
  padding-left: 40px;
  }
  .blog-hero h1:hover{
    color: #ffe600;

  }

.blog-hero h3 {
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 500;
  color: #ff4000;
  padding-left: 48px;
}

.hero-buttons {
  display: flex;
  justify-content: left;

  margin-left: 90px;
}

.hero-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 25px 22px;
  font-size: 16px;
  border-radius: 50px;
  border: none;
  background: #25D366;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.hero-whatsapp-btn i {
  font-size: 20px;
}


@media (max-width: 768px) {
  .blog-hero {
    height: 70vh;
  }

  .blog-hero {
  display: flex;
  align-items: center;
}


  .blog-hero h1 {
    font-size: 40px;
    margin-top: 0;   /* remove huge push down */
    color: #0056b3;
    padding-top: 80px;
  }

  .blog-hero h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #000;
  }

  .hero-buttons {
    justify-content: center;   /* center button */
    margin-left: 30;            /* remove desktop offset */
  }

  .hero-whatsapp-btn {
    padding: 14px 18px;        /* smaller mobile button */
    font-size: 15px;
  }
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/* .starter-section {
 
} */