@charset "utf-8";
/* CSS Document */
    .navbar {
      background-color: #002147; /* Dark Blue */
    }
    .navbar-nav .nav-link {
      color: #fff !important;
      font-weight: 500;
      padding: 0.6rem 1.1rem;
      border-radius: 30px;
      transition: all 0.3s ease-in-out;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .navbar-nav .nav-link:hover {
      background-color: rgba(243, 115, 33, 0.15);
      color: #f37321 !important;
    }
    .navbar-nav .nav-link.active {
      background-color: #f37321 !important; /* Orange pill */
      color: #fff !important;
      font-weight: 600;
      box-shadow: 0px 3px 8px rgba(0,0,0,0.2);
    }
    .dropdown-menu {
      background-color: #002147;
      border: none;
      border-radius: 12px;
      padding: 0.5rem;
    }
    .dropdown-menu .dropdown-item {
      color: #fff;
      border-radius: 8px;
      transition: 0.3s;
    }
    .dropdown-menu .dropdown-item:hover {
      background-color: #f37321;
      color: #fff;
    }
    .phone-number {
      display: inline-flex;
      align-items: center;
      background-color: #f37321;
      color: #fff;
      font-weight: 600;
      font-size: 1rem;
      padding: 8px 15px;
      border-radius: 30px;
      text-decoration: none;
      transition: all 0.3s ease-in-out;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .phone-number i {
      margin-right: 8px;
      font-size: 1.1rem;
    }
    .phone-number:hover {
      background-color: #fff;
      color: #f37321;
      box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    }
    .navbar-brand img {
      height:100px;
	  position:absolute;
	  z-index:101;
    }
	@media only screen and (min-width:320px) and (max-width:768px)
{    .navbar {
      background-color:#f37321; /* Dark Blue */
    }
    .navbar-nav .nav-link.active {
      background-color: #002147 !important; /* Orange pill */
      color: #fff !important;
      font-weight: 600;
      box-shadow: 0px 3px 8px rgba(0,0,0,0.2);
    }
 .navbar-brand img {
      height:100px;
	  position: relative;
	  z-index:0;
    }
	navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background: #FFF !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
*, ::after, ::before {
    box-sizing: border-box;
}}
@media only screen and (min-width:820px) and (max-width:1180px)
{    .navbar {
      background-color:#f37321; /* Dark Blue */
    }
    .navbar-nav .nav-link.active {
      background-color: #002147 !important; /* Orange pill */
      color: #fff !important;
      font-weight: 600;
      box-shadow: 0px 3px 8px rgba(0,0,0,0.2);
    }
 .navbar-brand img {
      height:100px;
	  position: relative;
	  z-index:0;
    }
	navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background: #FFF !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
*, ::after, ::before {
    box-sizing: border-box;
}}

    /* Slider Container */
    .carousel-item {
      height: 90vh;
      min-height: 400px;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }

    /* Zoom Animation */
    .carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      animation: zoomEffect 12s ease-in-out infinite;
    }
	@media only screen and (min-width:320px) and (max-width:768px)
{     /* Slider Container */
    .carousel-item {
      height:315px;
      min-height: 400px;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }

    /* Zoom Animation */
    .carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      animation: zoomEffect 12s ease-in-out infinite;
    }
	    .carousel-caption, .head {
      font-size:2rem !important;
      font-weight: 700;
      color: #fff;
      text-shadow: 0px 3px 8px rgba(0,0,0,0.7);
    }
	}
		@media only screen and (min-width:820px) and (max-width:1180px)
{     /* Slider Container */
    .carousel-item {
      height:400px;
      min-height: 400px;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }

    /* Zoom Animation */
    .carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      animation: zoomEffect 12s ease-in-out infinite;
    }}
    @keyframes zoomEffect {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }

    /* Next & Prev Buttons */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: #f37321; /* Orange */
      padding: 25px;
      border-radius: 50%;
      background-size: 60% 60%;
      box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    }

    .carousel-control-prev-icon:hover,
    .carousel-control-next-icon:hover {
      background-color: #002147; /* Dark Blue */
      transition: 0.3s ease-in-out;
    }

    /* Caption Styling */
    .carousel-caption {
      bottom: 20%;
    }
    .carousel-caption, .head {
      font-size: 3rem;
      font-weight: 700;
      color: #fff;
      text-shadow: 0px 3px 8px rgba(0,0,0,0.7);
    }
    .carousel-caption p {
      font-size: 1.25rem;
      color: #f0f0f0;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .content-section {
      padding: 20px 0;
    }
    .content-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #002147; /* Dark Blue */
      margin-bottom: 20px;
    }
    .content-text {
      font-size: 1.15rem;
      color: #555;
      line-height: 1.8;
      margin-bottom: 25px;
    }
    .content-highlight {
      color: #f37321; /* Orange */
      font-weight: 600;
    }
	    .content-highlight a{
      color: #f37321; /* Orange */
      font-weight: 600;
	  text-decoration:none;
    }
	 .content-highlight a:hover{
      color:#002147; /* Orange */
      font-weight: 600;
	  text-decoration:none;
    }
    .btn-custom {
      background-color: #f37321;
      color: #fff;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: 30px;
      transition: 0.3s;
    }
    .btn-custom:hover {
      background-color: #002147;
      color: #fff;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
    }
    .content-img {
      border-radius: 20px;
      box-shadow: 0px 5px 20px rgba(0,0,0,0.15);
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f9f9f9;
    }
    .reservation-box {
      background: #fff;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0px 6px 25px rgba(0,0,0,0.1);
      max-width:1200px;
      margin: 60px auto;
    }
    .reservation-title {
      font-size: 1.8rem;
      font-weight: 700;
      color: #002147; /* Dark Blue */
      margin-bottom: 25px;
      text-align: center;
    }
    .form-control, .form-select {
      border-radius: 12px;
      padding: 10px 15px;
      font-size: 1rem;
    }
    .btn-book {
      background-color: #f37321;
      color: #fff;
      font-weight: 600;
      padding: 14px;
      border-radius: 12px;
      transition: all 0.3s ease-in-out;
      width: 100%;
      font-size: 1.1rem;
      letter-spacing: 0.5px;
    }
    .btn-book:hover {
      background-color: #002147;
      color: #fff;
      box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .services-section {
      padding:20px 0 60px 0;
      background: #f9f9f9;
    }
    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #002147;
      text-align: center;
      margin-bottom: 50px;
    }
    .service-box {
      background: #fff;
      padding: 30px 25px;
      border-radius: 20px;
      box-shadow: 0px 6px 20px rgba(0,0,0,0.08);
      text-align: center;
      transition: all 0.3s ease-in-out;
    }
    .service-box:hover {
      transform: translateY(-8px);
      box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
    }
    .service-icon {
      font-size: 40px;
      color: #f37321; /* Orange */
      margin-bottom: 20px;
      transition: 0.3s;
    }
    .service-box:hover .service-icon {
      color: #002147; /* Dark Blue on hover */
    }
    .service-title {
      font-size: 1.3rem;
      font-weight: 600;
      color: #002147;
      margin-bottom: 12px;
    }
    .service-text {
      font-size: 1rem;
      color: #555;
      line-height: 1.6;
    }

    .meeting-section {
      background-color: #0b1c39; /* Dark background */
      padding: 20px 0;
      color: #fff;
    }
    .meeting-img-box {
      background: #002147; /* Blue border background */
      padding: 15px;
      border-radius: 15px;
      display: inline-block;
    }
    .meeting-img-box img {
      border-radius: 10px;
      max-width: 100%;
      height: auto;
      display: block;
    }
    .meeting-content .head1 {
      text-transform: uppercase;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 1px;
      color: #bbb;
      margin-bottom: 10px;
    }
    .meeting-content h2 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .meeting-content p {
      font-size: 1rem;
      line-height: 1.7;
      color: #ddd;
      margin-bottom: 25px;
    }
    .btn-learn {
      border: 2px solid #fff;
      color: #fff;
      padding: 10px 25px;
      border-radius: 10px;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    .btn-learn:hover {
      background: #f37321; /* Orange hover */
      border-color: #f37321;
      color: #fff;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.3);
    }

    .gallery-img {
      cursor: pointer;
      transition: transform 0.3s ease;
      border-radius: 10px;
    }
    .gallery-img:hover {
      transform: scale(1.05);
      box-shadow: 0px 4px 15px rgba(0,0,0,0.4);
    }

    /* Modal image enlarged */
    .modal-img {
      width: 100%;
      max-height: 90vh;
      object-fit: contain;
      border-radius: 10px;
      transition: transform 0.4s ease;
    }
    .modal.show .modal-img {
      transform: scale(1.05); /* auto enlarge effect */
    }

    .modal-dialog {
      max-width: 90%;
      margin: auto;
    }
    .modal-content {
      background: transparent;
      border: none;
      text-align: center;
      position: relative;
    }

    /* Close button */
    .close-btn {
      position: absolute;
      top: 15px;
      right: 20px;
      background: rgba(0,0,0,0.6);
      border: none;
      color: #fff;
      font-size: 28px;
      border-radius: 50%;
      padding: 5px 12px;
      cursor: pointer;
      z-index: 1000;
    }
    .close-btn:hover {
      background: #f37321;
    }

    /* Next & Prev buttons as overlay */
    .modal-nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.6);
      border: none;
      color: #fff;
      padding: 15px 20px;
      font-size: 30px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 1000;
    }
    #prevBtn { left: 20px; }
    #nextBtn { right: 20px; }
    .modal-nav-btn:hover {
      background: #f37321;
    }
    footer {
      background: linear-gradient(135deg, #0b1c39, #1f3d7a);
      color: #fff;
      padding: 60px 0 20px;
      position: relative;
    }
    footer h5 {
      font-weight: 600;
      margin-bottom: 20px;
    }
    footer a {
      color: #ccc;
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
      transition: all 0.3s ease;
    }
    footer a:hover {
      color: #f37321;
      padding-left: 5px;
    }
    .social-icons a {
      display: inline-block;
      width: 40px;
      height: 40px;
      line-height: 40px;
      margin: 0 8px 0 0;
      text-align: center;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      color: #fff;
      transition: all 0.3s ease;
    }
    .social-icons a:hover {
      background: #f37321;
      color: #fff;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.2);
      padding-top: 15px;
      margin-top: 30px;
      text-align:left;
      color: #ccc;
    }
	.footer-bottom a{ color:#FFFFFF; text-decoration:none; text-align:left; float:left;}
	

    /* Back to Top Button */
    #backToTop {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: #f37321;
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      font-size: 22px;
      display: flex; /* <- always visible for testing */
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 1000;
      box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
      transition: background 0.3s ease;
    }
    #backToTop:hover {
      background: #d45f18;
    }
    .location-section {
      padding: 20px 0;
      background: linear-gradient(135deg, #ccc, #fff);
      color: #0b1c39;
    }
    .location-section h2 {
      font-weight: 700;
      margin-bottom: 25px;
      font-size: 32px;
      color: #f37321;
    }
    .location-details p {
      margin-bottom: 12px;
      font-size: 17px;
    }
    .location-details i {
      margin-right: 10px;
      color: #f37321;
    }
    .map-box {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }
    .btn-directions {
      margin-top: 20px;
      background: #f37321;
      color: #fff;
      padding: 10px 25px;
      border-radius: 30px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
    }
    .btn-directions:hover {
      background: #d45f18;
      transform: scale(1.05);
      color: #fff;
    }
	.cgs {color:#0b1c39; text-decoration:none;}
	.cgs a{color:#0b1c39; text-decoration:none;}
	.cgs a:hover{color:#f37321 !important; text-decoration:none;}
		.cgs1 {color:#fff; text-decoration:none;}
	.cgs1 a{color:#fff; text-decoration:none;}
	.cgs1 a:hover{color:#f37321 !important; text-decoration:none;}
	  .footer-link {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
  }
  .footer-link a{
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
  }
  .footer-link:hover {
    color: #ffcc00; /* Hover color */
    text-decoration:none;
  }
  #more {display: none;}