﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo span {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
}

.navbar a.active {
  color: #FF8C00; /* Highlight color for active link */
  font-weight: 700; /* Optional: make it bolder */
  border-bottom: 2px solid #FF8C00; /* Optional underline */
  padding-bottom: 2px;
  
}


.navbar ul {
  list-style: none;
  display: flex;
  gap: 49px;
}

.navbar a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 15px;
  margin-right: 20px; /* Add space between links */
}

/* Optional: remove margin from the last link */
.navbar a:last-child {
  margin-right: 0;
}


.navbar a:hover {
  color: #ed2427 ;
}

.book-btn {
  background-color: #FF8c00;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Video Background */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 20, 10, 0.6);
  z-index: -1;
}

.hero .content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  margin-top: 5px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Badges */
.badges span {
  margin: 0 10px;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 15px;
  border-radius: 20px;
}

/* Search Box */
.search-box {
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  border-radius: 10px;
  margin: 30px auto;
  flex-wrap: wrap;
  width: fit-content;
}

.field {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.field label {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 5px;
}

.field input,
.field select {
  padding: 10px;
  border: none;
  border-radius: 5px;
  min-width: 150px;
}

.search-btn {
  background-color: #005a66;
  border: none;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
}

.logo h1 {
  font-family: "Playfair Display", serif; /* Elegant font */
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  margin: 0;
 font-style: oblique;
}



/* === Buttons Section === */
.buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease both;
}

.buttons a {
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.buttons a.primary {
  background: #001B3A;;   /* gold tone */
  color: #fff;
  box-shadow: 0 4px 10px rgba(181, 139, 76, 0.3);
}

.buttons a.primary:hover {
  background: #ff8c00;
  box-shadow: 0 6px 14px rgba(181, 139, 76, 0.5);
}

.buttons a.secondary {
  border: 2px solid #005a66;
  color: #fff;
  background: transparent;
}

.buttons a.secondary:hover {
  background: #ed2427;
  color: #fff;
  box-shadow: 0 4px 10px rgba(181, 139, 76, 0.4);
}
/* Hamburger Menu Icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu */
#nav-menu {
  display: flex;
}

@media (max-width: 768px) {
  #nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 70px; /* below navbar */
    left: 0;
    text-align: center;
    padding: 20px 0;
  }

  #nav-menu ul {
    flex-direction: column;
    gap: 15px;
  }

  #nav-menu ul li {
    margin: 10px 0;
  }

  .hamburger {
    display: flex;
  }

  .book-btn {
    display: none; /* optional: hide book button on mobile */
  }
}

/* Hamburger animation when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* Mobile Close Button */
.menu-close {
  display: none;
  font-size: 2rem;
  color: #fff;
  text-align: right;
  padding: 0 20px 10px 20px;
  cursor: pointer;
}

@media (max-width: 768px) {
  #nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #005a66;
    position: absolute;
    top: 70px;
    left: 0;
    text-align: center;
    padding: 20px 0;
    transition: all 0.3s ease;
  }

  #nav-menu ul {
    flex-direction: column;
    gap: 15px;
    background-color: #005a66;
  }

  .menu-close {
    display: block;
  }
}


/* === Animation === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===========================
   MOBILE RESPONSIVE DESIGN
   =========================== */

/* Large tablets / small desktops */
@media (max-width: 1024px) {
  .navbar {
    padding: 15px 40px;
  }

  .hero .content {
    margin-top: 200px;
    padding: 0 40px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .stats {
    gap: 40px;
  }
}

/* Tablets / Medium screens */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
    padding: 15px 25px;
  }

  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero {
    height: auto;
    padding: 100px 20px 60px;
  }

  .hero .content {
    margin-top: 120px;
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 15px;
  }

  .badges span {
    display: inline-block;
    margin: 8px 5px;
    font-size: 13px;
  }

  .search-box {
    flex-direction: column;
    gap: 15px;
    width: 90%;
  }

  .field input,
  .field select {
    width: 100%;
  }

  .search-btn {
    width: 100%;
  }

  .buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .buttons a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .stats {
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
  }

  .stats h2 {
    font-size: 32px;
  }

  .stats p {
    font-size: 14px;
  }

  .logo img {
    height: 50px;
  }
}

/* Small phones / portrait screens */
@media (max-width: 480px) {
  .navbar {
    padding: 10px 15px;
    background-color: #005a66;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.6;
  }

  .badges span {
    font-size: 12px;
    padding: 6px 10px;
  }

  .search-box {
    padding: 15px;
  }

  .buttons a {
    padding: 10px 20px;
    font-size: 14px;
  }

  .stats h2 {
    font-size: 26px;
  }

  .stats p {
    font-size: 13px;
  }

  .logo img {
    height: 40px;
  }

  .hero .content {
    margin-top: 100px;
    padding: 0 15px;
  }
}


/* Moving Line (Announcement Bar) */
.moving-line {
  background: #00072d;
  color: #fff;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  padding: 10px 0;
  
  border-bottom: 2px solid #fff;
  font-size: 18px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.moving-line marquee {
  white-space: nowrap;
}

.moving-line strong {
  color: #fff;
  font-weight: 700;
}

/* ==========================================
   RESPONSIVE FIXES FOR ALL SCREEN RESOLUTIONS
   ========================================== */

/* --- 1024x600 & 1024x768 (Small tablets / laptops) --- */
@media (max-width: 1024px) and (min-width: 900px) {
  .navbar { padding: 15px 40px; }
  .navbar ul { gap: 30px; }
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 15px; }
  .search-box { gap: 12px; padding: 15px; }
}

/* --- 1280x800 (Medium laptops) --- */
@media (min-width: 1200px) and (max-width: 1350px) {
  .navbar { padding: 20px 60px; }
  .hero h1 { font-size: 44px; }
  .hero .content { max-width: 850px; }
  .buttons a { font-size: 15px; padding: 12px 28px; }
}

/* --- 1366x768 (Standard HD screens) --- */
@media (min-width: 1360px) and (max-width: 1439px) {
  .navbar { padding: 20px 80px; }
  .hero h1 { font-size: 46px; }
  .hero p { font-size: 16px; }
}

/* --- 1440x900 (MacBook Pro 15") --- */
@media (min-width: 1440px) and (max-width: 1599px) {
  .hero h1 { font-size: 50px; }
  .hero p { font-size: 18px; }
  .navbar a { font-size: 16px; }
}

/* --- 1680x1050 (Large laptops) --- */
@media (min-width: 1600px) and (max-width: 1799px) {
  .hero h1 { font-size: 52px; }
  .hero p { font-size: 18px; max-width: 850px; margin: 0 auto; }
  .navbar { padding: 25px 120px; }
}

/* --- 1920x1080 & 1920x1200 (Full HD / WUXGA) --- */
@media (min-width: 1800px) and (max-width: 2100px) {
  .hero h1 { font-size: 56px; }
  .hero p { font-size: 19px; max-width: 900px; }
  .navbar { padding: 30px 140px; }
  .buttons a { font-size: 16px; padding: 14px 34px; }
}

/* --- 2560x1440 (2K / QHD) --- */
@media (min-width: 2300px) and (max-width: 2700px) {
  .hero h1 { font-size: 64px; }
  .hero p { font-size: 20px; }
  .navbar { padding: 40px 200px; }
  .navbar a { font-size: 18px; }
  .buttons a { font-size: 18px; padding: 16px 36px; }
}

/* --- 3840x2160 (4K UHD) --- */
@media (min-width: 3200px) and (max-width: 4000px) {
  .hero h1 { font-size: 78px; }
  .hero p { font-size: 22px; }
  .navbar { padding: 60px 300px; }
  .navbar a { font-size: 20px; }
  .buttons a { font-size: 20px; padding: 18px 42px; }
}

/* --- 4096x2304 (DCI 4K) --- */
@media (min-width: 4001px) and (max-width: 4300px) {
  .hero h1 { font-size: 84px; }
  .hero p { font-size: 24px; }
  .navbar { padding: 70px 340px; }
}

/* --- 5120x2880 (5K Displays) --- */
@media (min-width: 4301px) {
  .hero h1 { font-size: 96px; }
  .hero p { font-size: 26px; }
  .navbar { padding: 80px 400px; }
  .buttons a { font-size: 22px; padding: 20px 48px; }
}

/* About Section Layout */

/* --- About Section Layout --- */

.about-section-complex {
    display: flex;
    flex-wrap: wrap; /* Allows columns to stack on smaller screens */
    max-width: 1450px;
    margin: 0px auto; /* Centered with vertical spacing */
    background-color: #ffffff; /* White background for the whole section */
    border-radius: 15px; /* Subtle rounded corners */
    box-shadow: 0 10px 40px var(--shadow-color); /* Main shadow */
    padding: 60px;
    gap: 40px; /* Space between the two main columns */
}

.left-column {
    flex: 1; /* Takes up available space */
    min-width: 450px; /* Minimum width before wrapping */
    padding-right: 20px;
    color: #000;
}

.right-column {
    flex: 1; /* Takes up available space */
    min-width: 450px; /* Minimum width before wrapping */
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 35px;
}

/* --- LEFT COLUMN STYLES --- */
.subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    color: #001b3a;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: inline-block;
    position: relative;
    margin-bottom: 23px;
}

/* Curved underline using ::after */
.subtitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px; /* adjust distance from text */
    width: 100%;
    height: 13px;  /* thickness of the curve */
    background: #ff8c00;
    border-radius: 50% 50% 0 0; /* top curve shape */
    transform: scaleX(1.05); /* slightly stretch to cover full width */
}


.left-column h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #001b3a;
    line-height: 1.2;
    margin-bottom: 25px;
}

.left-column h2 .since-2015 {
    color: var(--secondary-color);
    display: inline-block;
    position: relative;
}

.left-column h2 .since-2015::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.left-column p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* --- VALUES GRID (4 Cards) STYLES --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-card {
    /* Main alignment: icon and text block side-by-side */
    display: flex;
    align-items: flex-start;
    padding: 0; /* No padding on the card itself */
    gap: 15px; /* Space between icon and text content */
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
}

.icon-badge {
    /* Icon Container */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: #e6f7ff; /* Lighter blue background */
    border-radius: 5px;
}

.icon-badge i {
    /* Icon itself (Font Awesome) */
    font-size: 1.4rem;
    color: #001b3a;
}

.text-content {
    /* Text Container: Forces h3 and p to stack vertically */
    display: flex;
    flex-direction: column;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #001b3a;
    margin-bottom: 5px;
    margin-top: 0; /* Important: Remove default h3 top margin */
}

.value-card p {
    font-size: 0.9rem;
    color: #000;
    margin: 0;
    line-height: 1.4;
}
/* Existing button styles */
.read-more-btn1 {
    display: inline-block;
    margin-top: 33px;
    margin-left: 254px;
    padding: 10px 25px;
    background-color: #001b3a;
    color: #fff;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Center button on mobile screens */
@media (max-width: 992px) {
    .read-more-btn1 {
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}


.read-more-btn1:hover {
  background-color: #ff8c00;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* --- RIGHT COLUMN STYLES --- */
.main-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.main-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.quote-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: #00072d85; /* Dark red/maroon color from image */
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    max-width: 60%;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.quote-overlay .icon i {
    font-size: 1.5rem;
    color: #fff;
    line-height: 1;
    margin-top: 3px;
}

.quote-overlay p {
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.lower-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.lower-images-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-light);
    display: block;
}

/* --- ANIMATION KEYFRAMES (Keep these) --- */
.left-column, .right-column {
    opacity: 0;
    transform: translateX(0);
    transition: all 1s ease-out;
}

.left-column.animate {
    opacity: 1;
    animation: slideFromLeft 1s forwards;
}

.right-column.animate {
    opacity: 1;
    animation: slideFromRight 1s forwards;
}

@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- RESPONSIVE DESIGN --- */
/* --- Responsive Design for About Section --- */

/* Large tablets / smaller desktops */
@media (max-width: 1024px) {
    .left-column, .right-column {
        min-width: unset;
        flex: 1 1 100%;
        padding-right: 0;
    }

    .about-section-complex {
        padding: 40px 20px;
        gap: 40px;
    }

    .left-column h2 {
        font-size: 2rem;
    }

    .value-card {
        flex: 1 1 calc(50% - 20px); /* 2 cards per row */
    }

    .lower-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets / medium screens */
@media (max-width: 768px) {
    .values-grid {
        flex-direction: column; /* stack cards vertically */
        gap: 15px;
    }

    .value-card {
        flex: 1 1 100%;
        width: 100%;
        animation: floatCard 3s ease-in-out infinite alternate; /* slightly faster float */
    }

    .quote-overlay {
        max-width: 85%;
        left: 20px;
        bottom: 20px;
        padding: 15px 20px;
    }

    .lower-images-grid {
        grid-template-columns: 1fr; /* stack images vertically */
        gap: 15px;
    }

    .lower-images-grid img {
        height: 200px;
    }
}

/* Small screens / mobile devices */
@media (max-width: 480px) {
    .about-section-complex {
        margin: 20px auto;
        padding: 15px;
        gap: 20px;
    }

    .left-column h2 {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 1.4rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .value-card {
        flex: 1 1 100%;
        width: 100%;
        gap: 10px;
        padding: 12px;
        animation: floatCard 2.5s ease-in-out infinite alternate; /* smaller float for mobile */
    }

    .value-card h3 {
        font-size: 1rem;
    }

    .value-card p {
        font-size: 0.85rem;
    }

    .icon-badge {
        width: 40px;
        height: 40px;
    }

    .icon-badge i {
        font-size: 1.2rem;
    }

    .main-image-container img,
    .lower-images-grid img {
        height: auto;
    }
}


/* --- VALUES GRID: Flow Cards --- */
/* Keep your original flow/grid for cards */
.values-grid {
    display: flex;
    flex-wrap: wrap; /* keeps the cards flowing naturally */
    gap: 20px;
}

/* Cards: keep layout intact but add floating animation */
.value-card {
    flex: 1 1 calc(50% - 20px); /* original responsive width */
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;

    /* Floating animation */
    animation: floatCard 4s ease-in-out infinite alternate;
}


/* Slight lift on hover */
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation-play-state: paused; /* pause floating on hover */
}

/* Floating keyframes: small movement only to avoid layout break */
@keyframes floatCard {
    0%   { transform: translateY(0); }
    25%  { transform: translateY(-5px); }
    50%  { transform: translateY(5px); }
    75%  { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}

/* Optional: add different delays per card so they float independently */
.value-card:nth-child(1) { animation-delay: 0s; }
.value-card:nth-child(2) { animation-delay: 0.5s; }
.value-card:nth-child(3) { animation-delay: 1s; }
.value-card:nth-child(4) { animation-delay: 1.5s; }


/* --- IMAGE ZOOM EFFECT --- */
.main-image-container img,
.lower-images-grid img {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
}

.main-image-container img:hover,
.lower-images-grid img:hover {
    transform: scale(1.05); /* zoom in slightly */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}


/* Target the icon inside value-card */
.value-card .icon-badge i {
    font-size: 1.4rem;
    color: #001b3a;
    transition: transform 0.3s ease; /* smooth zoom effect */
}

/* Zoom in on hover */
.value-card .icon-badge:hover i {
    transform: scale(1.3); /* increase size by 30% */
}


/* ===============================
   RESPONSIVE DESIGN BREAKPOINTS
   =============================== */

/* For 1024×600 / 1024×768 / 1280×800 */
@media (max-width: 1280px) {
  .about-section-complex {
    max-width: 1100px;
    padding: 40px;
    gap: 30px;
  }
  .left-column h2 { font-size: 2rem; }
  .quote-overlay { max-width: 70%; }
}

/* For 1366×768 / 1440×900 */
@media (max-width: 1440px) {
  .about-section-complex { max-width: 1200px; }
  .left-column h2 { font-size: 2.1rem; }
}

/* For 1680×1050 / 1920×1080 / 1920×1200 */
@media (min-width: 1680px) and (max-width: 1920px) {
  .about-section-complex {
    max-width: 1400px;
    padding: 60px 80px;
  }
  .left-column h2 { font-size: 2.4rem; }
  .left-column p { font-size: 1.1rem; }
}

/* For 2560×1440 (2K displays) */
@media (min-width: 1921px) and (max-width: 2560px) {
  .about-section-complex {
    max-width: 1700px;
    padding: 80px;
  }
  .left-column h2 { font-size: 2.6rem; }
  .value-card h3 { font-size: 1.2rem; }
  .value-card p { font-size: 1rem; }
}

/* For 3840×2160 (4K) */
@media (min-width: 2561px) and (max-width: 4096px) {
  .about-section-complex {
    max-width: 2200px;
    padding: 100px;
  }
  .left-column h2 { font-size: 3rem; }
  .left-column p { font-size: 1.2rem; }
  .value-card { padding: 25px; }
}

/* For 4096×2304 / 5120×2880 (4K+ / 5K) */
@media (min-width: 4097px) {
  .about-section-complex {
    max-width: 2600px;
    padding: 120px;
  }
  .left-column h2 { font-size: 3.2rem; }
  .left-column p { font-size: 1.3rem; }
  .value-card h3 { font-size: 1.3rem; }
  .value-card p { font-size: 1.05rem; }
  .icon-badge { width: 55px; height: 55px; }
}

/* For Tablets & Mobiles */
@media (max-width: 992px) {
  .about-section-complex {
    flex-direction: column;
    padding: 30px;
  }
  .values-grid { flex-direction: column; }
  .lower-images-grid { grid-template-columns: 1fr; gap: 15px; }
  .read-more-btn1 {
    display: block;
    margin: 20px auto 0;
  }
}










/* Why Choose Us Section - Updated Background Image */
/* --- Tech Services Section --- */
.tech-services-section {
  padding: 80px 20px;
  font-family: Arial, sans-serif;

  /* Background Image */
  background-image: url('assets/img/background.png'); /* Replace with your image */
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; /* optional parallax effect */
  position: relative;
  overflow: hidden;
}

/* Optional overlay for readability */
.tech-services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: 0;
}

/* Section Header */
.subtitle1 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #001b3a;
  margin-left: 556px;
  text-transform: uppercase;
  letter-spacing: 4px;
  display: inline-block;
  position: relative;
  margin-bottom: 5px;
}

.subtitle1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 13px;
  background: #ff8c00;
  border-radius: 50% 50% 0 0;
  transform: scaleX(1.05);
}

h2 {
  font-size: 2rem;
  color: #001b3a;
  margin: 10px 0 50px 0;
}

h2 .since-2015 {
  color: #ff8c00;
  display: inline-block;
  position: relative;
}

h2 .since-2015::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #001b3a;
  border-radius: 2px;
}

/* --- Cards Grid --- */
.tech-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* --- Card Styles --- */
.tech-service-card {
  display: flex;
  background-color: #cccccc17;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  flex-direction: row;
  align-items: flex-start;
  transition: transform 0.4s ease, box-shadow 0.4s ease;

  /* Floating animation */
  animation: floatCard 6s ease-in-out infinite alternate;
}

/* Card Hover */
.tech-service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  animation-play-state: paused;
}

/* Floating keyframes */
@keyframes floatCard {
  0% { transform: translateY(0px); }
  25% { transform: translateY(-5px); }
  50% { transform: translateY(5px); }
  75% { transform: translateY(-3px); }
  100% { transform: translateY(0px); }
}

/* Icon Wrapper */
.tech-card-icon-wrapper {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  background-color: transparent;
}

.tech-card-icon-wrapper i {
  font-size: 2rem;
  color: #001b3a;
  transition: transform 0.3s ease;
}

.tech-card-icon-wrapper:hover i {
  transform: scale(1.3);
}

/* Card Body */
.tech-card-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #001b3a;
  margin-top: 0;
  margin-bottom: 10px;
}

.tech-card-body p {
  font-size: 0.95rem;
  color: #000;
  margin: 0;
  line-height: 1.5;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .tech-services-grid {
    grid-template-columns: 1fr;
  }
  .tech-service-card {
    padding: 25px;
  }
}

@media (max-width: 500px) {
  .tech-service-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .tech-card-icon-wrapper {
    margin-bottom: 10px;
  }
  .tech-card-body h3 {
    font-size: 1.1rem;
  }
}
/* ================================
   RESPONSIVE BREAKPOINTS
   ================================ */

/* --- For 1024×600 / 1024×768 / 1280×800 --- */
@media (max-width: 1280px) {
  .tech-services-section { padding: 70px 30px; }
  .tech-services-grid { gap: 20px; }
  .subtitle1 { font-size: 1.6rem; }
  h2 { font-size: 1.8rem; }
  .tech-card-body h3 { font-size: 1.1rem; }
}

/* --- For 1366×768 / 1440×900 --- */
@media (max-width: 1440px) {
  .tech-services-section { padding: 80px 40px; }
  .tech-services-grid { max-width: 1100px; }
  .subtitle1 { font-size: 1.7rem; }
  h2 { font-size: 1.9rem; }
}

/* --- For 1680×1050 / 1920×1080 / 1920×1200 --- */
@media (min-width: 1680px) and (max-width: 1920px) {
  .tech-services-section { padding: 100px 60px; }
  .tech-services-grid { max-width: 1300px; }
  .tech-service-card { padding: 40px; }
  .tech-card-body h3 { font-size: 1.2rem; }
  .tech-card-body p { font-size: 1rem; }
}

/* --- For 2560×1440 (2K displays) --- */
@media (min-width: 1921px) and (max-width: 2560px) {
  .tech-services-section { padding: 120px 80px; }
  .tech-services-grid { max-width: 1500px; }
  .subtitle1 { font-size: 2rem; }
  h2 { font-size: 2.4rem; }
  .tech-service-card { padding: 45px; }
  .tech-card-body h3 { font-size: 1.3rem; }
  .tech-card-body p { font-size: 1.05rem; }
}

/* --- For 3840×2160 (4K UHD) --- */
@media (min-width: 2561px) and (max-width: 4096px) {
  .tech-services-section { padding: 160px 100px; }
  .tech-services-grid { max-width: 2000px; gap: 40px; }
  .subtitle1 { font-size: 2.3rem; }
  h2 { font-size: 2.7rem; }
  .tech-service-card { padding: 60px; }
  .tech-card-body h3 { font-size: 1.4rem; }
  .tech-card-body p { font-size: 1.1rem; }
}

/* --- For 4096×2304 / 5120×2880 (5K Retina) --- */
@media (min-width: 4097px) {
  .tech-services-section { padding: 200px 120px; }
  .tech-services-grid { max-width: 2400px; gap: 50px; }
  .subtitle1 { font-size: 2.5rem; }
  h2 { font-size: 3rem; }
  .tech-service-card { padding: 70px; border-radius: 18px; }
  .tech-card-body h3 { font-size: 1.5rem; }
  .tech-card-body p { font-size: 1.2rem; }
  .tech-card-icon-wrapper i { font-size: 2.5rem; }
}

/* --- Tablets / Mobile --- */
@media (max-width: 992px) {
  .tech-services-grid { grid-template-columns: 1fr; }
  .tech-service-card { padding: 25px; }
}
@media (max-width: 500px) {
  .tech-service-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .tech-card-icon-wrapper { margin-bottom: 10px; }
  .tech-card-body h3 { font-size: 1rem; }
  .tech-card-body p { font-size: 0.9rem; }
}












/*facities*/
/* General Section */
.services-section {
  max-width: 1450px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  font-family: 'Poppins', sans-serif;
}

/* Service Card */
.service-card {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 72px;
}

/* Swap image/text for second card */
.hosting-service {
  flex-direction: row-reverse;
}

/* Text Content */
.service-text {
  flex: 1;
  min-width: 300px;
}


.subtitle2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #001b3a;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: inline-block;
    position: relative;
    margin-bottom: 23px;
}

/* Curved underline using ::after */
.subtitle2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px; /* adjust distance from text */
    width: 100%;
    height: 13px;  /* thickness of the curve */
    background: #ff8c00;
    border-radius: 50% 50% 0 0; /* top curve shape */
    transform: scaleX(1.05); /* slightly stretch to cover full width */
}

.amenities-list {
    list-style: none;       /* Remove default bullets */
    padding-left: 0;
    margin-top: 10px;
}

.amenities-list li {
    position: relative;
    padding-left: 25px;     /* Space for arrow */
    margin-bottom: 8px;
    font-size: 16px;
    color: #001b3a;
}

/* Add arrow before each list item */
.amenities-list li::before {
    content: "\2192";       /* Unicode arrow → */
    position: absolute;
    left: 0;
    color: #ff8c00;         /* Arrow color */
    font-weight: bold;
    font-size: 18px;
}

.service-text .subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: #1a2b55;
  display: inline-block;
  margin-bottom: 10px;
}

.service-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #001b3a;
}

.service-text p {
  font-size: 1.rem;
    line-height: 1.6;
    font-weight: bold;
    text-align: justify;
    color: #000;
    margin-bottom: 25px;
}

/* Button */
/* Existing button styles */
.service-text .btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #1a2b55;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  margin-left: 183px; /* desktop position */
  transition: all 0.3s ease;
}

/* Center button on mobile screens */
@media (max-width: 992px) {
  .service-text .btn {
    display: block;        /* Make it block element */
    margin-left: auto;     /* Center horizontally */
    margin-right: auto;
    text-align: center;    /* Center text inside button */
  }
}


.service-text .btn:hover {
  background-color: #ff8c00;
  transform: translateY(-2px);
}

/* Image */
.service-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-image img {
  max-width: 100%;
  height: 300px;
  width: 653px;
  border-radius: 17px;
  transition: transform 0.5s ease; /* Smooth zoom in/out */
  cursor: pointer; /* Optional: shows pointer on hover */
}

.service-image img:hover {
  transform: scale(1.1); /* Zoom in 10% */
}

/* Responsive */
@media (max-width: 992px) {
  .service-card {
    flex-direction: column;
    text-align: center;
  }
  .hosting-service {
    flex-direction: column;
  }
  .service-text {
    order: 2;
  }
  .service-image {
    order: 1;
  }
}



/* ===== Animated Background Section ===== */
.animated-bg {
  position: relative;
  overflow: hidden;
  
}

/* Soft glowing background motion */
.animated-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  
  animation: moveGlow 18s infinite alternate ease-in-out;
  z-index: 0;
}

/* Background movement animation */
@keyframes moveGlow {
  0% {
    background-position: 20% 20%, 80% 30%, 50% 80%;
  }
  50% {
    background-position: 30% 25%, 70% 40%, 55% 75%;
  }
  100% {
    background-position: 25% 30%, 85% 20%, 60% 70%;
  }
}

/* Floating Blue Bubbles */
.bubble {
  position: absolute;
  bottom: -120px;
  background: radial-gradient(circle, rgba(0,120,255,0.8) 0%, rgba(0,180,255,0.3) 70%);
  border-radius: 50%;
  animation: rise 25s infinite ease-in;
  box-shadow: 0 0 15px rgba(0,150,255,0.5);
  z-index: 0;
  filter: blur(1px);
}

/* Smooth upward float */
@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-1300px) scale(1.4);
    opacity: 0;
  }
}

/* Ensure content is above bubbles */
.services-section {
  position: relative;
  z-index: 2;
}

/* -------------------- RESPONSIVE BREAKPOINTS -------------------- */

/* Tablet Portrait and Small Desktop */
@media (max-width: 1366px) {
  .service-text h2 { font-size: 1.8rem; }
  .service-text p { font-size: 0.95rem; }
  .service-text .btn { margin-left: 140px; }
  .service-image img { height: 280px; }
}

/* 1024x600, 1024x768 */
@media (max-width: 1024px) {
  .service-card { flex-direction: column; text-align: center; }
  .service-text .btn { margin: 20px auto 0; display: block; }
  .service-image img { height: 250px; }
}

/* Medium to Large Laptops */
@media (min-width: 1440px) and (max-width: 1919px) {
  .service-text h2 { font-size: 2.2rem; }
  .service-image img { height: 350px; }
}

/* 1920x1080, 1920x1200 */
@media (min-width: 1920px) and (max-width: 2559px) {
  .service-text h2 { font-size: 2.4rem; }
  .service-text p { font-size: 1.05rem; }
  .service-image img { height: 400px; }
}

/* 2560x1440 (2K) */
@media (min-width: 2560px) and (max-width: 3839px) {
  .service-text h2 { font-size: 2.6rem; }
  .service-text p { font-size: 1.1rem; }
  .service-image img { height: 450px; }
}

/* 3840x2160 (4K UHD) */
@media (min-width: 3840px) and (max-width: 4095px) {
  .services-section { max-width: 2000px; padding: 100px 40px; }
  .service-text h2 { font-size: 3rem; }
  .service-text p { font-size: 1.2rem; }
  .service-image img { height: 500px; }
}

/* 4096x2304 (4K DCI) */
@media (min-width: 4096px) and (max-width: 5119px) {
  .services-section { max-width: 2200px; padding: 120px 60px; }
  .service-text h2 { font-size: 3.2rem; }
  .service-text p { font-size: 1.25rem; }
  .service-image img { height: 550px; }
}

/* 5120x2880 (5K Retina Displays) */
@media (min-width: 5120px) {
  .services-section { max-width: 2600px; padding: 150px 80px; }
  .service-text h2 { font-size: 3.5rem; }
  .service-text p { font-size: 1.35rem; line-height: 1.8; }
  .service-image img { height: 600px; }
}



/* New container for the background effect */
.main-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('assets/img/image9.png') no-repeat center center/cover;
    position: relative;
    padding: 20px;
}

/* Dark overlay */
.overlay-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

/* Main card */
.card-wrapper {
    display: flex;
    width: 60%;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    overflow: hidden;
}

/* Image column */
.left-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.left-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text column */
.right-panel {
    flex: 1;
    padding: 30px 40px;
}

.heading {
    font-family: 'Times New Roman', serif;
    font-size: 2.2em;
    font-weight: bold;
    color: #001b3a;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-content {
    font-size: 0.95em;
    line-height: 1.6;
    color: #444;
}
.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill the area like the image */
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .card-wrapper {
        flex-direction: column;
        width: 100%;
        margin: 20px;
    }

    .right-panel {
        padding: 20px;
    }

    .heading {
        font-size: 1.8em;
    }
}


/* 1024x600, 1024x768 */
@media (max-width: 1024px) and (min-width: 900px) {
  .card-wrapper {
    width: 80%;
  }
  .heading {
    font-size: 2em;
  }
  .right-panel {
    padding: 30px;
  }
}

/* 1280x800, 1366x768 */
@media (min-width: 1025px) and (max-width: 1366px) {
  .card-wrapper {
    width: 70%;
  }
  .heading {
    font-size: 2.1em;
  }
}

/* 1440x900, 1680x1050 */
@media (min-width: 1367px) and (max-width: 1680px) {
  .card-wrapper {
    width: 60%;
  }
  .heading {
    font-size: 2.2em;
  }
}

/* 1920x1080, 1920x1200 */
@media (min-width: 1681px) and (max-width: 1920px) {
  .card-wrapper {
    width: 55%;
  }
  .heading {
    font-size: 2.4em;
  }
}

/* 2560x1440 */
@media (min-width: 1921px) and (max-width: 2560px) {
  .card-wrapper {
    width: 45%;
  }
  .heading {
    font-size: 2.6em;
  }
  .text-content {
    font-size: 1.1em;
  }
}

/* 3840x2160 (4K UHD) */
@media (min-width: 2561px) and (max-width: 3840px) {
  .card-wrapper {
    width: 40%;
  }
  .heading {
    font-size: 2.8em;
  }
  .text-content {
    font-size: 1.2em;
  }
}

/* 4096x2304, 5120x2880 (5K displays) */
@media (min-width: 3841px) {
  .card-wrapper {
    width: 35%;
  }
  .heading {
    font-size: 3em;
  }
  .text-content {
    font-size: 1.3em;
  }
}

/* Mobile (below 900px) */
@media (max-width: 899px) {
  .card-wrapper {
    flex-direction: column;
    width: 95%;
    margin: 20px auto;
  }

  .right-panel {
    padding: 20px;
  }

  .heading {
    font-size: 1.8em;
  }

  .text-content {
    font-size: 0.95em;
  }
}









/* Gallery Section */
.gallery-section {
  padding: 60px 20px;
  background: #f9f6f2;
  text-align: center;
}

.gallery-header h2 {
  font-size: 2.5rem;
  color: #001b2a;
  margin-bottom: 10px;
}

.gallery-header p {
  font-size: 1rem;
  color: #000;
  margin-bottom: 20px;
}

.read-more-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #001b3a;
  color: #fff;
  margin-top: 18px;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.3s;
}

.read-more-btn:hover {
  background: #ff8c00;
}

/* Gallery wrapper */
.gallery-wrapper {
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.gallery-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.gallery-track img {
  width: 250px;
  height: 150px;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-track img:hover {
  transform: scale(1.1);
}

/* Infinite scroll animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* adjust depending on number of images */
}



/* ===========================================
   Responsive Adjustments for all major sizes
   =========================================== */

/* ✅ 1024×600, 1024×768 */
@media (max-width: 1024px) and (min-width: 900px) {
  .gallery-header h2 { font-size: 2.2rem; }
  .gallery-header p { font-size: 0.95rem; }
  .gallery-track img { width: 220px; height: 130px; margin-right: 15px; }
}

/* ✅ 1280×800, 1366×768 */
@media (min-width: 1025px) and (max-width: 1366px) {
  .gallery-header h2 { font-size: 2.3rem; }
  .gallery-track img { width: 230px; height: 140px; margin-right: 16px; }
}

/* ✅ 1440×900, 1680×1050 */
@media (min-width: 1367px) and (max-width: 1680px) {
  .gallery-header h2 { font-size: 2.4rem; }
  .gallery-track img { width: 250px; height: 150px; margin-right: 18px; }
}

/* ✅ 1920×1080, 1920×1200 */
@media (min-width: 1681px) and (max-width: 1920px) {
  .gallery-header h2 { font-size: 2.6rem; }
  .gallery-header p { font-size: 1.05rem; }
  .gallery-track img { width: 280px; height: 170px; margin-right: 20px; }
}

/* ✅ 2560×1440 */
@media (min-width: 1921px) and (max-width: 2560px) {
  .gallery-header h2 { font-size: 2.8rem; }
  .gallery-header p { font-size: 1.1rem; }
  .gallery-track img { width: 320px; height: 190px; margin-right: 22px; }
}

/* ✅ 3840×2160 (4K UHD) */
@media (min-width: 2561px) and (max-width: 3840px) {
  .gallery-header h2 { font-size: 3rem; }
  .gallery-header p { font-size: 1.2rem; }
  .gallery-track img { width: 360px; height: 210px; margin-right: 24px; }
}

/* ✅ 4096×2304, 5120×2880 (5K & 8K) */
@media (min-width: 3841px) {
  .gallery-header h2 { font-size: 3.2rem; }
  .gallery-header p { font-size: 1.25rem; }
  .gallery-track img { width: 400px; height: 240px; margin-right: 28px; }
}

/* ✅ Mobile and small tablets */
@media (max-width: 899px) {
  .gallery-header h2 { font-size: 1.8rem; }
  .gallery-header p { font-size: 0.9rem; }
  .gallery-track {
    animation: none; /* stop scroll on small devices */
    justify-content: center;
    flex-wrap: wrap;
  }
  .gallery-track img {
    width: 45%;
    height: auto;
    margin: 10px;
  }
}














/* Section Title */
.places-masonry {
  padding: 60px 20px;
  background: #f0f8ff;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.section-header h2 {
  color: #001b3a;
  font-size: 2rem;
  margin-bottom: 5px;
}

.section-header p {
  color: #000;
  font-size: 14px;
  margin-bottom: 40px;
}

/* Masonry Grid */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 59px;
  justify-items: center;
}

/* Card Style */
.masonry-card {
  background: linear-gradient(145deg, #ffffff, #e0f7fa);
  border-radius: 25px;
  padding: 20px 15px;
  width: 100%;
  max-width: 250px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.masonry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Circular Images */
.circle-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #005a66;
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.masonry-card:hover .circle-img img {
  transform: scale(1.1);
}

/* Card Content */
.masonry-content h3 {
  font-size: 16px;
  color: #001b2a;
  margin-bottom: 8px;
}

.masonry-content p {
  font-size: 13px;
  color: #000;
  margin-bottom: 10px;
  line-height: 1.4;
}

.tag {
  font-size: 12px;
  background: #001b3a;
  color: #fff;
  padding: 5px 10px;
  border-radius: 50px;
  display: inline-block;
}

/* 🟦 1024×600 & 1024×768 */
@media (max-width: 1024px) and (min-width: 900px) {
  .section-header h2 { font-size: 1.8rem; }
  .section-header p { font-size: 13px; }
  .masonry-grid { gap: 25px; }
  .masonry-card { max-width: 220px; padding: 18px 12px; }
  .circle-img { width: 100px; height: 100px; }
}

/* 🟦 1280×800 & 1366×768 */
@media (min-width: 1025px) and (max-width: 1366px) {
  .section-header h2 { font-size: 1.9rem; }
  .masonry-card { max-width: 230px; }
  .circle-img { width: 110px; height: 110px; }
}

/* 🟦 1440×900 & 1680×1050 */
@media (min-width: 1367px) and (max-width: 1680px) {
  .section-header h2 { font-size: 2.1rem; }
  .masonry-card { max-width: 250px; }
  .circle-img { width: 120px; height: 120px; }
}

/* 🟦 1920×1080 & 1920×1200 */
@media (min-width: 1681px) and (max-width: 1920px) {
  .section-header h2 { font-size: 2.3rem; }
  .section-header p { font-size: 15px; }
  .masonry-card { max-width: 270px; padding: 25px 15px; }
  .circle-img { width: 130px; height: 130px; }
}

/* 🟦 2560×1440 */
@media (min-width: 1921px) and (max-width: 2560px) {
  .section-header h2 { font-size: 2.5rem; }
  .section-header p { font-size: 16px; }
  .masonry-card { max-width: 300px; padding: 30px 20px; }
  .circle-img { width: 150px; height: 150px; }
}

/* 🟦 3840×2160 (4K UHD) */
@media (min-width: 2561px) and (max-width: 3840px) {
  .section-header h2 { font-size: 2.8rem; }
  .section-header p { font-size: 18px; }
  .masonry-grid { gap: 40px; }
  .masonry-card { max-width: 340px; padding: 35px 25px; }
  .circle-img { width: 170px; height: 170px; }
}

/* 🟦 4096×2304 & 5120×2880 (5K & 8K) */
@media (min-width: 3841px) {
  .section-header h2 { font-size: 3rem; }
  .section-header p { font-size: 20px; }
  .masonry-card { max-width: 380px; padding: 40px 30px; }
  .circle-img { width: 190px; height: 190px; }
  .masonry-content h3 { font-size: 20px; }
  .masonry-content p { font-size: 16px; }
  .tag { font-size: 14px; }
}

/* 🟨 Mobile & Small Tablets */
@media (max-width: 899px) {
  .section-header h2 { font-size: 1.6rem; }
  .section-header p { font-size: 13px; }
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .masonry-card {
    max-width: 100%;
    padding: 18px;
  }
  .circle-img {
    width: 90px;
    height: 90px;
  }
}





/* Fixed contact buttons */
.fixed-contact {
  position: fixed;
  right: 20px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #00aff5;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s, background-color 0.3s;
}
.contact-text {
    color: #000; /* Black text */
}


.contact-btn:hover {
  transform: scale(1.1);
  background-color: #008ecf;
}

.contact-btn.whatsapp {
  background-color: #25d366;
}

.contact-btn.whatsapp:hover {
  background-color: #1ebe5b;
}


/*footer*/
.jurilex-footer {
  font-family: 'Arial', sans-serif;
  background-color: #111;
  color: #fff;
}

.jurilex-footer h5 {
  color: #00aff5;
  margin-bottom: 15px;
  font-weight: 600;
}

.jurilex-footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.jurilex-footer a:hover {
  color: #00aff5;
  text-decoration: underline;
}

.jurilex-footer p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .jurilex-footer iframe {
    height: 150px;
  }
}


.custom-footer {
  background: #001b3a;
  color: #ccc;
  padding-top: 40px;
  font-family: Arial, sans-serif;
}

/* Flex container for 5 columns */
.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 0 40px;
}

.footer-col {
  flex: 1;
  min-width: 0;
}

.footer-col h5 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h5::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #005a66;
  margin-top: 8px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ff9800;
  padding-left: 5px;
}

.footer-col .social-links a {
  display: inline-block;
  margin-right: 10px;
  color: #ccc;
  font-size: 18px;
  transition: color 0.3s;
}

.footer-col .social-links a:hover {
  color: #ff9800;
}

/* Map column style */
.footer-map iframe {
  border-radius: 5px;
  overflow: hidden;
}

.footer-bottom {
  background: #005a66;
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
  font-size: 14px;
  color: #fff;
}
.footer-col img.footer-logo {
  display: block;
  margin-bottom: 10px;
}

.footer-col h5 {
  color: #ff8c00;
  margin-bottom: 10px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
}

/* Keep in one row even on small screens */
@media (max-width: 768px) {
  .footer-container {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .footer-col {
    min-width: 250px;
  }
}
.designer-credit {
  text-align: center;
  font-size: 14px;
  color: #fff;
  margin-top: 10px;
}

.designer-credit a {
  color: #ff8c00;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.designer-credit a:hover {
  color: #fff;
  text-decoration: underline;
}
/* Mobile-friendly footer layout */
@media (max-width: 768px) {
  .footer-container {
    flex-wrap: wrap;           /* Allow wrapping to new lines */
    overflow-x: visible;       /* Remove horizontal scroll */
    gap: 20px;
    padding: 0 20px;
  }

  .footer-col {
    flex: 1 1 100%;            /* Full width for each column */
    min-width: 100%;
  }

  .footer-map iframe {
    width: 100%;               /* Make map fit mobile width */
    height: 200px;
  }
}


















/* Banner Section Styles */
 /* ===== Banner Section ===== */
    .banner {
      position: relative;
      width: 100%;
      height: 50vh; /* Full screen height */
      background: url('assets/img/image1.jpg') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    /* Dark overlay for contrast */
    .banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      z-index: 1;
    }

    .content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
    }

    .content h1 {
      font-size: 44px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 15px;
    }

    .content p {
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 30px;
      color: #f0f0f0;
    }

    .badges {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-bottom: 30px;
    }

    .badges span {
      background: rgba(255, 255, 255, 0.15);
      padding: 10px 18px;
      border-radius: 30px;
      font-size: 15px;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background 0.3s ease;
    }

    .badges span:hover {
      background: rgba(255, 255, 255, 0.3);
    }

    .buttons a {
      display: inline-block;
      padding: 12px 28px;
      background: #001b3a;
      color: #fff;
      border-radius: 30px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.3s;
    }

    .buttons a:hover {
      background: #d98700;
    }

    /* ===== Responsive ===== */
    @media (max-width: 768px) {
      .content h1 {
        font-size: 32px;
      }

      .content p {
        font-size: 16px;
      }
    }

/* Vision Section Styles */
/* ===== Vision Section ===== */
.vision-section {
  background: #f8f9fb;
  padding: 80px 5%;
  font-family: 'Poppins', sans-serif;
}

.vision-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.vision-left {
  flex: 1;
  text-align: center;
}

.vision-left img {
  width: 100%;
  height: 387px;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.vision-left img:hover {
  transform: scale(1.03);
}

.vision-right {
  flex: 1;
}

.vision-right .subtitle {
  color: #001b3a;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 29px;
  display: block;
  margin-bottom: 10px;
}

.vision-right h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 20px;
  line-height: 1.4;
}

.vision-right p {
  color: #555;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.vision-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vision-points .point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #333;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, background 0.3s ease;
}

.vision-points .point i {
  color: #001b3a;
  font-size: 18px;
}

.vision-points .point:hover {
  transform: translateX(5px);
  background: #fdf5e6;
}

/* Responsive */
@media (max-width: 992px) {
  .vision-container {
    flex-direction: column;
  }

  .vision-right h2 {
    font-size: 26px;
  }
}






/* Mission Section Styles */
/* ====== Mission Section Luxury ====== */
.mission-section-luxury {
  background: linear-gradient(rgba(30,30,30,0.6), rgba(30,30,30,0.6)), url('assets/img/mission-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 80px 5%;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.mission-header .subtitle {
  color: #001b3a;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 32px;
  margin-bottom: 10px;
  display: inline-block;
}

.mission-header h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
}

.mission-header p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #ddd;
}

.mission-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.mission-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 30px 20px;
  width: 260px;
  transition: all 0.4s ease;
  text-align: center;
}

.mission-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.15);
}

.mission-card i {
  font-size: 40px;
  color: #f9a826;
  margin-bottom: 15px;
}

.mission-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #001b3a;
}

.mission-card p {
  font-size: 15px;
  color: #eee;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .mission-cards {
    flex-direction: column;
    align-items: center;
  }
}
















































/*gallery section*/
.custom-gallery-section {
  padding: 40px 20px;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  margin-top: -93px;
}

.custom-gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 0 10px;
  box-sizing: border-box;
}

.custom-gallery-item {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  cursor: pointer;
}

.custom-gallery-item img {
  width: 100%;
  height: 200px;
  display: block;
  transition: transform 0.4s ease;
}

.custom-gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* + icon overlay */
.custom-gallery-item::after {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
}

.custom-gallery-item:hover::after {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .custom-gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .custom-gallery-container {
    grid-template-columns: 1fr;
  }
}

/* Modal overlay */
.image-modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

/* Modal image */
.image-modal img.modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255,255,255,0.5);
  user-select: none;
}

/* Close button (top-right X) */
.modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
  z-index: 1010;
}
.modal-close:hover {
  color: #bbb;
}

/* Next and Prev buttons */
.modal-next,
.modal-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.3);
  border: none;
  font-size: 48px;
  color: white;
  font-weight: bold;
  padding: 0 15px;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease, color 0.3s ease;
  z-index: 1010;
}

.modal-next:hover,
.modal-prev:hover {
  background: rgba(255,255,255,0.7);
  color: black;
}

.modal-prev {
  left: 30px;
}

.modal-next {
  right: 30px;
}


.services-modern {
    text-align: center;
    padding: 50px 20px;
  
    border-radius: 12px;
    margin: 30px auto;
    max-width: 1000px;
    
    transition: transform 0.3s ease;
}

.services-modern:hover {
    transform: translateY(-5px); /* subtle hover lift effect */
}

.services-modern h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #001b3a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Optional underline effect */
.services-modern h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
  
    margin: 10px auto 0;
    border-radius: 2px;
}












.contact-container {
            display: flex;
            background-color: white;
            padding: 40px;
            border-radius: 8px; /* Slight rounding might be present */
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
            max-width: 1200px;
            width: 100%;
                margin-left: 208px;
        }

        /* Responsive Breakpoint for Stacking Columns */
        @media (max-width: 900px) {
            .contact-container {
                flex-direction: column;
                padding: 20px;
            }
        }

        /* Left Section: Contact Information */
        .contact-info {
            flex: 1; /* Takes up half the space */
            padding-right: 40px;
            border-right: 1px solid #eee; /* Visual separator (optional) */
        }
        @media (max-width: 900px) {
             .contact-info {
                padding-right: 0;
                border-right: none;
                border-bottom: 1px solid #eee; /* Separator for mobile */
                padding-bottom: 20px;
                margin-bottom: 20px;
            }
        }

        /* Right Section: Send Us a Message (Form) */
        .send-message {
            flex: 1; /* Takes up half the space */
            padding-left: 40px;
        }
        @media (max-width: 900px) {
            .send-message {
                padding-left: 0;
            }
        }

        /* Headings Styling */
        h1 {
            font-size: 32px;
            font-weight: bold;
            color: #FF8C00;;
            margin-top: 0;
            margin-bottom: 20px;
        }

        /* Contact Details List Styling */
        .contact-details {
            list-style: none;
            padding: 0;
            margin-top: 25px;
        }

        .contact-details li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-size: 16px;
            color: #000;
            font-weight: bold;
        }

        /* Icon Styling (using a placeholder for icons) */
        .icon {
            margin-right: 10px;
            font-size: 20px;
            width: 25px;
            text-align: center;
            /* Placeholder styles - In a real project, use FontAwesome or SVG */
            color: #a00; /* Example color for the icon indicators */
        }
        .icon.location::before { content: '📍'; }
        .icon.phone::before { content: '📞'; }
        .icon.mail::before { content: '✉️'; }
        .icon.mobile::before { content: '📱'; }
        .icon.clock::before { content: '🕒'; }

        /* Link Styling */
        .contact-details a {
            color: green; /* Mimics a common link/accent color */
            text-decoration: none;
        }
        .contact-details a:hover {
            text-decoration: underline;
        }

        /* Map Placeholder Styling */
        .map-placeholder {
            margin-top: 20px;
            height: 300px; /* Approximate map height */
            background-color: #e0e0e0;
            border: 1px solid #ccc;
            position: relative;
            /* Mimics the text overlay inside the map area */
        }
        .map-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .map-info {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background-color: rgba(255, 255, 255, 0.8);
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 14px;
        }
        .view-map-link {
            position: absolute;
            top: 10px;
            left: 10px;
            color: blue;
            background-color: white;
            padding: 5px 10px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 14px;
            font-weight: bold;
        }


        /* Form Styling */
        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            font-weight: bold;
            color: #001b3a;
            margin-bottom: 5px;
            font-size: 16px;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #000000;
            border-radius: 4px;
            box-sizing: border-box; /* Includes padding and border in the element's total width and height */
            font-size: 16px;
            color: #000000;
        }

        textarea {
            resize: vertical;
            min-height: 150px; /* Approximate height from the image */
        }

        input::placeholder,
        textarea::placeholder {
            color: #aaa;
            font-style: italic;
        }

        /* Submit Button Styling */
        .submit-button {
            width: 100%;
            padding: 15px;
            background-color: #001b3a; /* Dark blue/black as seen in the image */
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 18px;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .submit-button:hover {
            background-color: #1a3f63;
        }



/* Responsive Styling for Tablets & Mobile */
@media (max-width: 900px) {
    /* Stack the left and right sections */
    .contact-container {
        flex-direction: column;
        padding: 20px;
        margin-left: 0; /* Remove fixed left margin for mobile */
    }

    /* Left Section */
    .contact-info {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    /* Right Section (Form) */
    .send-message {
        padding-left: 0;
    }

    /* Headings smaller on mobile */
    h1 {
        font-size: 26px;
        text-align: center;
        margin-bottom: 15px;
    }

    /* Contact Details */
    .contact-details li {
        font-size: 15px;
        gap: 8px;
    }

    .contact-details .icon {
        font-size: 18px;
        width: 22px;
    }
    
    /* Default: Desktop (already defined) */

/* Tablet view (max-width: 992px) */
@media (max-width: 992px) {
  .contact-details li {
    font-size: 15px;
    margin-bottom: 12px;
  }
}

/* Mobile view (max-width: 768px) */
@media (max-width: 768px) {
  .contact-details {
    margin-top: 20px;
  }

  .contact-details li {
    font-size: 14px;
    margin-bottom: 10px;
    flex-direction: column; /* Stack icon & text vertically */
    align-items: flex-start;
  }
}

/* Extra small devices (max-width: 480px) */
@media (max-width: 480px) {
  .contact-details {
    margin-top: 15px;
  }

  .contact-details li {
    font-size: 13px;
    margin-bottom: 8px;
  }
}


    /* Map Placeholder */
    .map-placeholder {
        height: 250px;
    }

    .map-info, .view-map-link {
        font-size: 12px;
        padding: 4px 8px;
    }

    /* Form Elements */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        font-size: 15px;
        padding: 10px;
    }

    label {
        font-size: 14px;
    }

    .submit-button {
        font-size: 16px;
        padding: 12px;
    }
}

/* Further adjustments for small phones */
@media (max-width: 500px) {
    .contact-container {
        padding: 15px;
    }

    h1 {
        font-size: 22px;
    }

    .contact-details li {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-details .icon {
        margin-bottom: 5px;
    }

    .send-message {
        margin-top: 20px;
    }

    .map-placeholder {
        height: 200px;
    }
}
/* CSS */
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 17px;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.whatsapp-link i {
  color: green; /* WhatsApp icon color */
  font-size: 22px;
}

.whatsapp-link .whatsapp-number {
  color: black; /* number color */
}

.whatsapp-link:hover {
  transform: scale(1.05);
}

.whatsapp-link:hover .whatsapp-number {
  color: green; /* optional hover effect */
}

/* Mobile view (max-width: 768px) */
@media (max-width: 768px) {
  .whatsapp-link {
    flex-direction: column; /* Stack icon above text */
    align-items: center;    /* Center both icon and number */
    gap: 4px;
    font-size: 15px;
  }

  .whatsapp-link i {
    font-size: 20px;
  }

  .whatsapp-link .whatsapp-number {
    color: black;
    text-align: center;
  }
}

/* Extra small devices (max-width: 480px) */
@media (max-width: 480px) {
  .whatsapp-link {
    font-size: 14px;
    gap: 3px;
    margin-left: 105px;
  }

  .whatsapp-link i {
    font-size: 18px;
  }
}





