:root {
    --primary: #2563eb;
    --dark: #1f2937;
    --light: #f3f4f6;
	--bg-color: #f8f8f8; 
	--accent: #1a1a1a;
	--header-h: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}
        
html, body { 
            height: 100%; width: 100%; 
            overflow: hidden; 
            background-color: var(--bg-color);
            font-family: 'Inter', sans-serif;
            color: var(--accent);
            position: fixed; /* Prevents bounce scroll on mobile */
        }
body {
	display: flex;
	flex-direction: column;
    padding-top: 80px; /* height of navbar */
}
section {
    margin: 0;
}

/*start menu bar*/
.menu_cont{
  padding-left: 20px;
  padding-right: 20px;
}

 /*menu bar code*/

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  a, a:hover {
    text-decoration: none !important; }

.site-navbar {
  margin-bottom: 0px;
  z-index: 2000;
  position: fixed;
  top: 0;
  background: linear-gradient(90deg, #0c2e52, #ff0000);
  backdrop-filter: blur(6px);
  width: 100%; 
  transition: all 0.3s ease;
 }
  .site-navbar .site-logo {
    position: relative;
    left: 0;
    font-size: 32px; }
  .site-navbar .site-navigation .site-menu {
    margin-bottom: 0; }
    .site-navbar .site-navigation .site-menu .active {
      color: #007bff;
      display: inline-block;
      padding: 20px 20px; }
    .site-navbar .site-navigation .site-menu a {
      text-decoration: none !important;
      display: inline-block; }
    .site-navbar .site-navigation .site-menu > li {
      display: inline-block; }
      .site-navbar .site-navigation .site-menu > li > a {
        padding: 20px 20px;
        font-size: 16px;
        text-transform: uppercase;
        display: inline-block;
        text-decoration: none !important; }
        .site-navbar .site-navigation .site-menu > li > a:hover, .site-navbar .site-navigation .site-menu > li > a:focus{
          color: #FFFF00 !important; }
      .site-navbar .site-navigation .site-menu > li.social > a {
        padding-left: 5px;
        padding-right: 5px; }
    .site-navbar .site-navigation .site-menu {
      position: relative; }
      .site-navbar .site-navigation .site-menu  > a {
        position: relative;
        padding-right: 20px; }
        .site-navbar .site-navigation .site-menu  > a:before {
          position: absolute;
          content: "\e313";
          font-size: 16px;
          top: 50%;
          right: 0;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          font-family: 'icomoon'; }
      .site-navbar .site-navigation .site-menu .dropdown {
        visibility: hidden;
        opacity: 0;
        top: 100%;
        position: absolute;
        text-align: left;
        border-top: 2px solid #007bff;
        -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
        padding: 0px 0;
        margin-top: 20px;
        margin-left: 0px;
        background: #fff;
        -webkit-transition: 0.2s 0s;
        -o-transition: 0.2s 0s;
        transition: 0.2s 0s; }
        .site-navbar .site-navigation .site-menu .dropdown.arrow-top {
          position: absolute; }
          .site-navbar .site-navigation .site-menu .dropdown.arrow-top:before {
            bottom: 100%;
            left: 20%;
            border: solid transparent;
            content: " ";
            height: 0;
            width: 0;
            position: absolute;
            pointer-events: none; }
          .site-navbar .site-navigation .site-menu .dropdown.arrow-top:before {
            border-color: rgba(136, 183, 213, 0);
            border-bottom-color: #fff;
            border-width: 10px;
            margin-left: -10px; }
        .site-navbar .site-navigation .site-menu .dropdown a {
          text-transform: none;
          letter-spacing: normal;
          -webkit-transition: 0s all;
          -o-transition: 0s all;
          transition: 0s all;
          color: #000; }
        .site-navbar .site-navigation .site-menu .dropdown .active {
          color: #007bff; }
        .site-navbar .site-navigation .site-menu .dropdown > li {
          list-style: none;
          padding: 0;
          margin: 0;
          min-width: 210px; }
          .site-navbar .site-navigation .site-menu .dropdown > li > a {
            padding: 9px 20px;
            display: block; }
            .site-navbar .site-navigation .site-menu .dropdown > li > a:hover {
              background: #eff1f3;
              color: #000; }
          .site-navbar .site-navigation .site-menu .dropdown > li > a:before {
            content: "\e315";
            right: 20px; }
          .site-navbar .site-navigation .site-menu .dropdown > li > .dropdown, .site-navbar .site-navigation .site-menu .dropdown > li {
            left: 100%;
            top: 0; }
      .site-navbar .site-navigation .site-menu :hover > a, .site-navbar .site-navigation .site-menu:focus > a, .site-navbar .site-navigation .site-menu:active > a {
        color: #007bff; }
      .site-navbar .site-navigation .site-menu:hover, .site-navbar .site-navigation .site-menu:focus, .site-navbar .site-navigation .site-menu:active {
        cursor: pointer; }
        .site-navbar .site-navigation .site-menu > li:hover > .dropdown, .site-navbar .site-navigation .site-menu:focus > .dropdown, .site-navbar .site-navigation .site-menu:active > .dropdown {
          -webkit-transition-delay: 0s;
          -o-transition-delay: 0s;
          transition-delay: 0s;
          margin-top: 0px;
          visibility: visible;
          opacity: 1; }

.site-mobile-menu {
  width: 300px;
  position: fixed;
  right: 0;
  z-index: 2000;
  padding-top: 20px;
  /*background: #fff;*/
  background: linear-gradient(90deg, rgba(12,46,82,0.8), rgba(255,0,0,0.6));
  height: calc(100vh);
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out; }
	.site-mobile-menu a:hover {
	  color: #FFFF00 !important; /* optional hover highlight */
	}

/*mobile close button*/
.site-mobile-menu .site-mobile-menu-close span {
  color: #FFB6C1; /* red color */
  font-size: 30px; /* keep size as is */
  cursor: pointer;
  transition: color 0.3s ease;
}
.site-mobile-menu .site-mobile-menu-close span:hover {
  color: #fff; /* turn yellow on hover, optional */
}
/* ------------------*/

  .offcanvas-menu .site-mobile-menu {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%); }
  .site-mobile-menu .site-mobile-menu-header {
    width: 100%;
    float: left;
    padding-left: 20px;
    padding-right: 20px; }
    .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
      float: right;
      margin-top: 8px; }
      .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
        font-size: 30px;
        display: inline-block;
        padding-left: 10px;
        padding-right: 0px;
        line-height: 1;
        cursor: pointer;
        -webkit-transition: .3s all ease;
        -o-transition: .3s all ease;
        transition: .3s all ease; }
    .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
      float: left;
      margin-top: 10px;
      margin-left: 0px; }
      .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
        display: inline-block;
        text-transform: uppercase; }
        .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
          max-width: 70px; }
        .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
          text-decoration: none; }
  .site-mobile-menu .site-mobile-menu-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding: 0 20px 20px 20px;
    height: calc(100vh - 52px);
    padding-bottom: 150px; }
  .site-mobile-menu .site-nav-wrap {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative; }
    .site-mobile-menu .site-nav-wrap a {
      padding: 10px 20px;
      display: block;
      position: relative;
      color: #212529; }
      .site-mobile-menu .site-nav-wrap a:hover {
        color: #007bff; }
    .site-mobile-menu .site-nav-wrap li {
      position: relative;
      display: block; }
      .site-mobile-menu .site-nav-wrap li .active {
        color: #ffffff; }
    .site-mobile-menu .site-nav-wrap .social {
      display: inline-block; }
    .site-mobile-menu .site-nav-wrap .arrow-collapse {
      position: absolute;
      right: 0px;
      top: 10px;
      z-index: 20;
      width: 36px;
      height: 36px;
      text-align: center;
      cursor: pointer;
      border-radius: 50%; }
      .site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
        background: #f8f9fa; }
      .site-mobile-menu .site-nav-wrap .arrow-collapse:before {
        font-size: 12px;
        z-index: 20;
        font-family: "icomoon";
        content: "\f078";
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%) rotate(-180deg);
        -ms-transform: translate(-50%, -50%) rotate(-180deg);
        transform: translate(-50%, -50%) rotate(-180deg);
        -webkit-transition: .3s all ease;
        -o-transition: .3s all ease;
        transition: .3s all ease; }
      .site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
    .site-mobile-menu .site-nav-wrap > li {
      display: block;
      position: relative;
      float: left;
      width: 100%; }
      .site-mobile-menu .site-nav-wrap > li.social {
        float: none !important;
        width: auto !important; }
      .site-mobile-menu .site-nav-wrap > li > a {
		/*color: #fff; /* all links white */
		color: rgba(255, 255, 255, 0.6);
		  font-weight: 400; /* normal weight */
		  transition: color 0.3s ease;
        padding-left: 20px;
        font-size: 20px; }
		.site-mobile-menu .site-nav-wrap > li > a[href="#home-section"] {
		  color: #fff; /* bright white for Home */
		  font-weight: 600; /* optional emphasis */
		}
      .site-mobile-menu .site-nav-wrap > li > ul {
        padding: 0;
        margin: 0;
        list-style: none; }
        .site-mobile-menu .site-nav-wrap > li > ul > li {
          display: block; }
          .site-mobile-menu .site-nav-wrap > li > ul > li > a {
            padding-left: 40px;
            font-size: 16px; }
          .site-mobile-menu .site-nav-wrap > li > ul > li > ul {
            padding: 0;
            margin: 0; }
            .site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
              display: block; }
              .site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
                font-size: 16px;
                padding-left: 60px; }
    .site-mobile-menu .site-nav-wrap[data-class="social"] {
      float: left;
      width: 100%;
      margin-top: 30px;
      padding-bottom: 5em; }
      .site-mobile-menu .site-nav-wrap[data-class="social"] > li {
        width: auto; }
        .site-mobile-menu .site-nav-wrap[data-class="social"] > li:first-child a {
          padding-left: 15px !important; }

.sticky-wrapper {
  position: absolute;
  z-index: 100;
  width: 100%; }
  .sticky-wrapper .site-navbar {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
  .sticky-wrapper .site-navbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    .sticky-wrapper .site-navbar .site-menu-toggle {
      color: #fff; }
    .sticky-wrapper .site-navbar .site-logo a {
      color: #fff; }
    .sticky-wrapper .site-navbar .site-menu > li > a {
      color: rgba(255, 255, 255, 0.7);}
    .sticky-wrapper .site-navbar .site-menu > li > a.active {
        color: #fff !important; }
	.sticky-wrapper .site-navbar .site-menu > li > a:hover {
        color: #FFFF00 !important; }
  .sticky-wrapper.is-sticky .site-navbar {
    background: linear-gradient(90deg, #022719, #006740);
    /*border-bottom: 1px solid transparent;*/
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
    -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1); }
    .sticky-wrapper.is-sticky .site-navbar .site-menu-toggle {
      color: #000; }
    .sticky-wrapper.is-sticky .site-navbar .site-logo a {
      color: #fff !important; }

      .sticky-wrapper.is-sticky .site-navbar .site-menu > li > a:hover, .sticky-wrapper.is-sticky .site-navbar .site-menu > li > a.active {
        color: #fff; /* nice highlight (optional) */ }
	/* When navbar is sticky */
	.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a {
	  color: rgba(255, 255, 255, 0.5); /* faded for all */
	}

	/* Make HOME active (highlighted) */
	.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a[href="#home-section"] {
	  color: #fff !important; /* bright white */
	  font-weight: normal;
	}

	/* Optional hover effect */
	.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a:hover {
	  color: #FFFF00 !important;
	}

.infocontact a {
	font-size: 16px;
    color: #fff;
}
.site-logo {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
}

.subtitle {
  color: rgba(255, 255, 0, 0.9);
  color: #FFFF00;/* nice yellow */
  font-size: 18px;
  font-weight: 500;
  display: block;
}
.sticky-wrapper.is-sticky .site-navbar .site-logo .subtitle {
  color: #FFFF00 !important;
}
.navbar-brand img {
  margin-right: 15px; /* increase/decrease as needed */
}
.infocontact .d-md-inline-block {
  font-size: 13px;
}

/*end of menu bar*/

/* start carousel*/
.main-container {
            flex-grow: 1;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            background: var(--bg-color);
            position: relative;
        }

        .img-side {
            display: flex; align-items: center; justify-content: center;
            padding: 40px;
        }

        #display-image {
            max-width: 100%; max-height: 75vh;
            object-fit: contain;
            box-shadow: 0 30px 60px rgba(0,0,0,0.06);
            transition: opacity 0.6s ease-in-out;
        }

        .text-side {
            display: flex; flex-direction: column; justify-content: center;
            padding: 0 10%; background: white;
            margin-left: -100px;
            border-top-left-radius: 120px;
            border-bottom-left-radius: 120px;
            box-shadow: -20px 0 40px rgba(0,0,0,0.03);
            z-index: 2;
        }

        .content-fade { transition: opacity 0.6s ease-in-out; }

        .text-side span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 4px; color: #aaa; margin-bottom: 15px; display: block; }
        .text-side h1 { font-family: 'Cormorant Garamond', serif; font-size: 3rem; line-height: 1.1; margin-bottom: 20px; }
        .text-side p { font-size: 0.95rem; color: #666; line-height: 1.6; margin-bottom: 35px; max-width: 320px; }

        /* Lucrative CTA */
        .cta {
            display: inline-block; padding: 15px 35px;
            background: transparent; color: var(--accent);
            text-decoration: none; font-size: 0.75rem; font-weight: 600;
            letter-spacing: 2px; border: 1px solid var(--accent);
            position: relative; overflow: hidden; transition: color 0.4s;
            z-index: 1; width: fit-content;
        }
        .cta::before {
            content: ''; position: absolute; top: 0; left: -100%;
            width: 100%; height: 100%; background: var(--accent);
            transition: left 0.4s cubic-bezier(0.7, 0, 0.2, 1); z-index: -1;
        }
        .cta:hover { color: #fff; }
        .cta:hover::before { left: 0; }

        .nav-btns {
            position: absolute; bottom: 40px; right: 5%;
            display: flex; gap: 12px; z-index: 100;
        }
        .nav-btns button {
            background: #fff; border: 1px solid #ddd;
            width: 45px; height: 45px; cursor: pointer; border-radius: 50%;
            transition: 0.3s;
        }
        .nav-btns button:hover { background: var(--accent); color: #fff; }

        .fade-out { opacity: 0; }

        /* MOBILE VIEW */
        @media (max-width: 900px) {
            header nav { display: none; }
            .main-container { 
                grid-template-columns: 1fr; 
                grid-template-rows: 45% 55%; 
                height: calc(100vh - var(--header-h));
            }
            .img-side { padding: 20px; height: 100%; }
            #display-image { max-height: 100%; max-width: 90%; }
            .text-side { 
                height: 100%; margin-left: 0; margin-top: -40px; 
                border-radius: 40px 40px 0 0; 
                padding: 50px 25px; text-align: center; 
                align-items: center; justify-content: flex-start;
            }
            .text-side h1 { font-size: 1.8rem; margin-bottom: 10px; }
            .text-side p { font-size: 0.8rem; margin-bottom: 20px; }
            .nav-btns { bottom: 20px; right: 50%; transform: translateX(50%); }
        }
/* end carousel*/

footer {
    text-align: center;
    padding: 10px;
    margin-top: 4px;
    color: #666;
}
