/**
* Template Name: Append
* Template URL: https://bootstrapmade.com/append-bootstrap-website-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

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

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

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

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

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

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

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

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

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

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

h7 {
  font-family: 'Rampart One';
  font-size: 80px;

}

p {
  font-family: 'Nunito', sans-serif;
  font-weight: 400; /* Regular weight */
  font-size: 22px; /* Example font size */
  line-height: 1.5; /* Line height for readability */
  color: #000000; /* Text color */
}




/* Hero
------------------------------*/

.hero {
    /* Replace with the actual path */
    background-image: url('../Img/Houses/3\ \(1\).jpeg');
    background-size: cover; /* Ensures the image covers the section */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents repeating */
    width: 100%; /* Ensures full width */
    height: 100vh; /* Sets the section height to full viewport */
    white-space: nowrap; /* Prevents wrapping to a new line */
    text-align: center; /* Centers the text horizontally */
}

.hero .info {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: #fff;

}

.hero .info h2 {
  font-family: var(--heading-font);
  color: #fffbfb; /* Text color */
}

@media (max-width: 768px) {
  .hero .info {
    padding: 0 50px;
  }
}

.hero .info p {
  color: rgba(255, 255, 255);
  font-size: 20px;
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: #00A6FF;
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 40px;
  height: 40px;
  margin-right: 30px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}



@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }


  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #00A6FF;
  --nav-color: rgba(255, 255, 255, 0.5);
  --nav-hover-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
  --heading-color: #32353a;
  --nav-color: #3a3939;
  --nav-hover-color: #1d49f8;
}


/*--------------------------------------------------------------
# Navigation Menu
/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    margin-left: 30%;
    padding: 0;
  }

  .navbar ul {
    margin-left: 50%;
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: center;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

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

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

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }

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

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-default);
    font-weight: 400;
  }

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

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

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

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

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


@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/


@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: var(--nav-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.3s;
  }

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

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #222428;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    position: fixed;
    right: 20px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    padding-right: 10px;
  }


  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

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

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9996;
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

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

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 80px 0;
  scroll-margin-top: 98px;
  overflow: clip;
  border: 5px solid rgb(62, 61, 61);
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 64px;
  }
}

/*--------------------------------------------------------------
# Grid About Section
--------------------------------------------------------------*/


.item-1 {
  grid-column: 1 / span 5; /* Takes the first 6 columns */
  grid-row: 1;
  background-color: rgb(255, 253, 253);
  height: auto; /* Fixed height */
  display: flex; /* Use flexbox for centering */
  
}



.item-3 {
  grid-column: 1 / span 4; /* Takes the first 6 columns */
  grid-row:  2 / -1;
  background-color: rgb(0, 255, 51);
  height: 400px; /* Fixed height */
  display: flex; /* Use flexbox for centering */
   /* Horizontally center the content */
  z-index: 1;
}



/*--------------------------------------------------------------
# Grid Vision and Mission Section
--------------------------------------------------------------*/

.vs-grid-container {
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr); /* 12 equal columns */
  max-width: 1200px; /* Maximum width for larger screens */
  margin: 0 auto; /* Center the container */
  width: 100%; /* Make it responsive */
  height: 500px;
  padding: 20px;
  border:2px #00A6FF;
}

.vsitem-1 {
  grid-column: 1 / span 5; /* Takes the first 6 columns */
  grid-row: 1;
  background-color: rgb(255, 255, 255);
  height: 200px; /* Fixed height */
  display: flex; /* Use flexbox for centering */
  /* Horizontally center the content */
  
}

.vsitem-2 {
  grid-column: 6 / -2; /* Takes the first 6 columns */
  grid-row: 1 / span 5;
  display: flex;
  background-color: rgb(255, 255, 255);
  height: 300px; /* Fixed height */
  display: flex; /* Use flexbox for centering */
}



.vsitem-3 {
  grid-column: 1 / span 4; /* Takes the first 6 columns */
  grid-row:  2 / span 4;
  background-color: rgb(0, 255, 51);
  height: 300px; /* Fixed height */
   /* Horizontally center the content */
  z-index: 1;
}

.vsitem-4 {
  margin-top: -8%;
  margin-left: 10%;
  background-color: rgb(16, 16, 16);
  height: 250px; /* Fixed height */
  display: flex; /* Use flexbox for centering */
  
  
}

.vsitem-5 {
  margin-top: -5%;
  margin-left: 66%;
  background-color: rgb(67, 126, 214);
  height: 180px; /* Fixed height */
  display: flex; /* Use flexbox for centering */
  width: 50%;/* Horizontally center the content */
  z-index: 2;
  
}

.image-3 {
  width: 40%;
  height: 350px;
  z-index: 2;
  margin-top: -15%;
  margin-left: -7%;
  object-fit: cover;

}
@media (max-width: 1068px) {
  .vsitem-4  {
    flex-direction: column; /* Stack images vertically */
    align-items: center; /* Center images horizontally */
    height: 180px;
    margin-left: 20%;
    margin-top: -25%;
}
  .vsitem-5  {
      flex-direction: column; /* Stack images vertically */
      align-items: center; /* Center images horizontally */
      height: 60%;
      z-index: 2;
  }

  .image-3 {
      width: 55%; /* Full width for mobile */
      height: 55%;
      margin-left: -1%; /* Remove left margin */
      max-height: none;
      margin-top: 10%;
  }

}

/*--------------------------------------------------------------
# Services Grid Section
--------------------------------------------------------------*/

.srvs-grid-container {
  display: grid;
  position: relative;
  grid-template-columns: repeat(10, 1fr); /* 12 equal columns */
  max-width: 1200px; /* Maximum width for larger screens */
  margin: 0 auto; /* Center the container */
  width: 100%; /* Make it responsive */
  height: 500px;
  padding-left: 200px;
  padding-bottom: 400px;
  border:2px #00A6FF;
  gap: 10px;
}

.srvsitem-1 {
  grid-column: 1 / span 4; /* Takes the first 6 columns */
  grid-row: 1 / span 4;
  background-color: rgb(189, 52, 52);
  height: 300px; /* Fixed height */
  display: flex; /* Use flexbox for centering */
   /* Horizontally center the content */
  
}

.srvsitem-2 {
  grid-column: 5 / span 4; /* Takes the first 6 columns */
  grid-row: 1 / span 4;
  background-color: rgb(189, 52, 52);
  height: 200px; /* Fixed height */
  display: flex; /* Use flexbox for centering */
}



.srvsitem-3 {
  grid-column: 1 / span 4; /* Takes the first 6 columns */
  grid-row: 5 / span 5;
  background-color: rgb(189, 52, 52);
  height: 300px; /* Fixed height */
  display: flex;
}

.srvsitem-4 {
  grid-column: 5 / span 4; /* Takes the first 6 columns */
  grid-row: 5 / span 5;
  background-color: rgb(189, 52, 52);
  height: 200px; /* Fixed height */
  display: flex; /* Use flexbox for centering */
   /* Horizontally center the content */
  
}




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

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

.section-title h2 {
  position: relative;
  text-align: center;
  display: inline-block;
  font-size: 40px; /* Increased font size */
  font-weight: 800; /* Extra Bold */
  font-family: 'Montserrat', sans-serif; /* Montserrat as a similar substitute */
  padding-top: 20px; /* Adds space between text and underline */
}

.section-title::before {
  content: "";
  position: absolute; /* Use absolute positioning */
  display: block;
  width: 90px;
  height: 4px;
  background: var(--accent-color);
  left: 50%; /* Center the underline */
  transform: translateX(-50%); /* Adjust centering */
  bottom: 100%; /* Position it above the text */
  margin-bottom: 10px; /* Adds space between the title and the underline */
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;

}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .info p {
  font-size:30px;
}

.hero .info .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  border: 2px solid var(--accent-color);
}

.hero .info .btn-get-started:hover {
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# new about  Section
--------------------------------------------------------------*/
.item-1-heading {
  position: relative;
  text-align: center;
  display: inline-block;
  font-size: 40px; /* Increased font size */
  font-weight: 800; /* Extra Bold */
  font-family: 'Montserrat', sans-serif; /* Montserrat as a similar substitute */
  padding-bottom: 10px; /* Adds space between text and underline */
}

.item-1-heading::after {
  content: "";
  position: relative;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  margin-top: 10%; /* Positions underline 10px below the heading */
}

.container[data-aos="fade-up"] {
  margin-top: 20px; /* Adjust the value as needed */
  padding-top: 20px; /* Or use padding if you prefer */
}


.grid-container {
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr);
  margin-top: -100%;
  gap: 0; 
  align-items: center; /* Center items vertically */
  margin-top: 0px;
  padding: 0;
}

.black-rectangle {
  grid-column: 1 / -1; /* Takes the first 6 columns */
  grid-row: 1;
  width: 100%; /* Adjust width as needed */
  height: 400px; /* Adjust height as needed */
  background-color: black;
  position: relative;
  margin-bottom: -130px;
}

.white-rectangle {
  position: relative;
  grid-row: 1;
  grid-column: 2 / -2; /* Takes the first 6 columns */
  width: 100%; /* Adjust width as needed */
  height: 350px; /* Adjust height as needed */
  background-color: rgb(255, 255, 255);
  z-index: 2;
  margin-top: 0;
}

.image-1 {
  grid-column: 2 / span 10; /* Takes the first 6 columns */
  grid-row: 1 / span 2;
  width: 30%;
  height: 300px;
  z-index: 2;
  margin-top: 20px;
  margin-left: 4%;
  object-fit: cover;
}

.image-2 {
  grid-column: 2 / span 20; /* Takes the first 6 columns */
  grid-row: 1 / span 2;
  width: 60%;
  height: 300px;
  margin-left: 10px;
  z-index: 2;
  margin-top: 20px;
  object-fit: cover;
  
}
@media (max-width: 768px) {
  
  .white-rectangle {
      flex-direction: column; /* Stack images vertically */
      align-items: center; /* Center images horizontally */
      margin-top: 50px;
  }

  .image-1 {
      width: 95%; /* Full width for mobile */
      height: 45%;
      margin-left: 10px; /* Remove left margin */
      max-height: none;
      margin-top: 15px;
  }

  .image-2 {
      height: 45%;
      width: 95%; /* Full width for mobile */
       /* Remove left margin */
      margin-left: 10px;
      margin-top: 10px;
      max-height: none;
  }
}


.srvs-grid-container {
  display: grid;
  position: relative;
  grid-template-columns: repeat(10, 1fr); /* 12 equal columns */
  max-width: 1200px; /* Maximum width for larger screens */
  margin: 0 auto; /* Center the container */
  width: 100%; /* Make it responsive */
  height: 500px;
  padding-left: 200px;
  padding-bottom: 400px;
  border:2px #00A6FF;
  gap: 10px;
}

.srvsitem-1 {
  grid-column: 1 / span 4; /* Takes the first 6 columns */
  grid-row: 1 / span 4;
  background-color: rgb(189, 52, 52);
  height: 300px; /* Fixed height */
  display: flex; /* Use flexbox for centering */
   /* Horizontally center the content */
  
}




/*--------------------------------------------------------------
# Vision and mission Section
--------------------------------------------------------------*/



.vsitem-4-image:first-child {

  margin-right: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

.icons { /* Define the height, no quotes needed */
  padding-top: 40px; /* Padding for the icon */
}



.text-section {
  flex: 1; /* Text section takes up the rest of the space */
  margin-left: 0px; /* Space between the icon and the text */
}

.title {
  font-size: 24px; /* Larger font size for the title */
  font-weight: bold;
  margin-bottom: 0px;
}

.title h3{
  font-size: 22px; /* Larger font size for the title */
  font-weight: bold;
  padding-bottom: 17px;
  padding-top: 17px;
}

.paragraph {
  font-size: 16px; /* Regular font size for the paragraph */
  line-height: 1.5; /* Space between lines */
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  position: relative;
  padding-top: 40px;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-right: 50px;
  line-height: 0;
}

.services .service-item .icon i {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}



.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .title a:hover {
  color: var(--accent-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
}



/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
/* Container to hide overflowing images */
/* General slider styles */
/* Set the swiper-container to a fixed height */
/* Basic Swiper styles */
/* Adjust the container height */
/* Adjust the container height */
/* Adjust the container and slider styling */


.grid-image {
  width: 100%; /* Ensure images are responsive within their container */
  max-width: 450px; /* Maintain the intended size */
  height: 450px; /* Maintain aspect ratio */
  object-fit: cover; /* Ensures proper cropping if needed */
  border-radius: 10px; /* Rounds the corners of the image */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow for a better visual effect */
}






.row.gy-4 {
  row-gap: 30px; /* Equal spacing between rows */
}

.col-lg-6 {
  padding: 10px; /* Equal spacing inside the grid items */
}



.item-2-heading {
  margin-left: 105%;
  position: relative;
  text-align: center;
  
  display: inline-block;
  font-size: 40px; /* Increased font size */
  font-weight: 800; /* Extra Bold */
  font-family: 'Montserrat', sans-serif; /* Montserrat as a similar substitute */
  padding-bottom: 20px; /* Adds space between text and underline */
  padding-top: 20px;
}

.item-2-heading::after {
  content: "";
  position: relative;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  margin-top: 10%; /* Positions underline 10px below the heading */
}


/*--------------------------------------------------------------
# Contacts Section
--------------------------------------------------------------*/


.citem-4-image:first-child {

  margin-right: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

.icons { /* Define the height, no quotes needed */
  padding-top: 40px; /* Padding for the icon */
}



.text-section {
  flex: 1; /* Text section takes up the rest of the space */
  margin-left: 0px; /* Space between the icon and the text */
}

.title {
  font-size: 24px; /* Larger font size for the title */
  font-weight: bold;
  margin-bottom: 0px;
}

.title h3{
  font-size: 22px; /* Larger font size for the title */
  font-weight: bold;
  padding-bottom: 17px;
  padding-top: 17px;
}

.paragraph {
  font-size: 16px; /* Regular font size for the paragraph */
  line-height: 1.5; /* Space between lines */
}

/*--------------------------------------------------------------
# flex Contacts Section
--------------------------------------------------------------*/

@media(min-width:1068px){
  
  .mobile {
    display: none;
  }
  .cflex{
    margin: 0;
    display: flex;
    height: 500px;
    width: 100vw;
  }

  .left {
    flex: 1;
    background-color: #fff;
  }

  .right {
    margin-top: -30px;
    margin-right: -80px;
    flex: 1.1;
    height: 150%;
    background-color: black;
  }

  .center-image {
    position: absolute;
    top: 52%;
    left:45%;
    transform: translate(-50%, -50%);
    z-index: 1;
    height: 70%;
    width: 30%;
  }

  .contact-head {
    position: absolute;
    top: 25%;
    left: 5%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .contact-1-heading {
    position: relative;
    text-align: center;
    display: inline-block;
    font-size: 290%; /* Increased font size */
    font-weight: 800; /* Extra Bold */
    font-family: 'Montserrat', sans-serif; /* Montserrat as a similar substitute */
    padding-bottom: 10px; /* Adds space between text and underline */
  }

  .contact-1-heading::after {
    content: "";
    position: relative;
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    left: 0;
    margin-top: 50%; /* Positions underline 10px below the heading */
  }

  .blue-box{
    position: absolute;
    top: 63%;
    left: 17.5%;
    transform: translateX(-50%);
    background-color: var(--nav-mobile-background-color);
    color: white;
    padding: 20px;
    text-align: center;
    z-index: 0;
    font-size: 120%;
    height: 23.5%;
    max-width: 25%;

  }

  .contacts-text {
    color: white; /* White color for both text and icon */
    text-align: left; 
    padding-left: 30%;
    font-size: 120%; /* Base font size (responsive) */
    font-family: Arial, sans-serif; /* Set font style */
  }

  .contacts-icons {
    padding-left: 30%;
    padding-top: 5%;
  }
}


@media (max-width: 1068px) {
  .cflex{
    display: none;
  }
  .mobile {
    display: block;
  }

  .contact-icons-grid {
    grid-template-columns: 1fr; /* One column for smaller screens */
    gap: 15px;
  }

  .contact-item span {
    font-size: 1rem;
  }

  .contact-heading {
    position: relative;
    text-align: center;
    display: inline-block;
    font-size: 40px; /* Increased font size */
    font-weight: 800; /* Extra Bold */
    font-family: 'Montserrat', sans-serif; /* Montserrat as a similar substitute */
    padding-bottom: 10px; /* Adds space between text and underline */
    padding-left: 40px;
  }
  
  .contact-heading::after {
    content: "";
    position: relative;
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    left: 0;
    margin-top: 10%; /* Positions underline 10px below the heading */
  }
    .contacts-text {
      color: rgb(0, 0, 0); /* White color for both text and icon */
      text-align: left; 
      padding-left: 10%;
      font-size: 120%; /* Base font size (responsive) */
      font-family: Arial, sans-serif; /* Set font style */
      position: relative;
    }
    
    .contacts-icons {
      padding-left: 10%;
      padding-top: 5%;
    }



}

