
/* Fonts */
:root {
  --default-font: "Noto Sans",  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: "Poppins",  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: #ffffff; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #24b7a4; /* 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: #24b7a4; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #384a59; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #566c7f; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #24b7a4; /* 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: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.transparent-background {
  --background-color: rgba(255, 255, 255, 0);
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  background: url(../images/bg.jpg) top center no-repeat;
  background-size: cover;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal; 
}

/*body::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(49, 71, 89, 0.7);
}*/

@media (min-width: 1366px) {
  body {
    background-attachment: fixed; 
  }
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;   font-family: "Noto Sans", sans-serif;
}

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: "Noto Sans", sans-serif;
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 60px 0 0 0;
  position: relative;
}

.footer .icon {
  color: #EB8200;
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .address p {
  margin-bottom: 0px; 
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #EB8200;
  border-color: #EB8200;
}

.footer .copyright {
  padding: 40px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

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




/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 20px;
  position: relative;   
  border-top: 1px solid 
color-mix(in srgb, var(--default-color), transparent 90%); 
  padding-top: 40px;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #EB8200;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  --background-color: rgba(255, 255, 255, 0);
  width: 100%;
  position: relative;
  padding: 80px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: var(--heading-color); 
}

.hero .countdown {
  margin-top: 25px;
}

.hero .countdown div {
  text-align: center;
  border: 2px solid color-mix(in srgb, var(--default-color), #EB8200 90%);
  border-radius: 8px;
  margin: 10px 10px;
  width: 100px;
  padding: 15px 0;
}

.hero .countdown div h3 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 15px;
}

.hero .countdown div h4 {
  font-size: 16px;
  font-weight: 600;
}
.hero .hero-newsletter {
  margin-top: 25px;
}

.hero .hero-newsletter p {
  font-size: 18px;
  margin: 0 0 15px 0;
}

.hero .hero-newsletter .newsletter-form {
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.hero .hero-newsletter .newsletter-form:focus-within {
  border-color: #EB8200;
}

.hero .hero-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
   color: #626262;
}

.hero .hero-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none; 
}

.hero .hero-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: #EB8200;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px; 
}

.hero .hero-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, #EB8200, transparent 20%);
}

.hero .social-links {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.hero .social-links a:hover {
  color: #EB8200;
  border-color: #EB8200;
}

.coming-soon-box{ border: 2px solid #EB8200; border-radius:20px; padding:7%;
 margin: 4% 0;}
.coming-soon-box p{ margin-top: 20px;}

/*=======responsivetool css===============*/
@media screen and (max-width: 1440px) {
  .coming-soon-box{ margin: 2% 0; }
}

@media screen and (max-width: 1366px) {
  .hero{ padding: 60px 0 0;}
  .coming-soon-box{ padding: 4%;}
  .footer{ padding: 35px 0 0 0;}
  .hero p{  font-size: 20px;}
  .col-lg-3{ width: 30%; flex: 0 auto; }
}

@media screen and (max-width: 1280px) {
.col-lg-3 { width: 24%; flex: 0 auto;}
}

@media screen and (max-width: 1180px) {
.col-lg-3 { width: 28%; flex: 0 auto;}
}

@media screen and (max-width: 991px) {
.col-lg-3 { width: 40%; flex: 0 auto;}
}

@media screen and (min-width: 768px) {
  .hero h2 { font-size: 38px;}
  .hero p { font-size: 18px;}
  .section-title h2 { font-size: 28px;}
}

@media screen and (max-width: 767px) {
  .hero h2 { font-size: 34px;}
  .hero p { font-size: 18px;}
  .section-title h2 { font-size: 28px;}
  .col-lg-3{width: 100%; display: block !important; text-align:center; margin-bottom:20px;}
  .footer .icon{ display: block; margin: 0 0 15px 0;}
  .mt-4 { margin-top: 0 !important;}
  .section-title{ padding-bottom: 30px;}
   body{ padding: 7% 0;}
}

@media screen and (max-width: 540px) {
  .main{ margin: 0 32px; }
  .hero h2 { font-size: 32px;}
  .section-title h2 { font-size: 24px; }
  .hero p { font-size: 16px;}
}

@media screen and (max-width: 384px) {
.hero h2 { font-size: 28px;}
.footer .copyright p{ padding: 0 10px;}
}
