@charset "utf-8";
/* CSS Document */


:root {
      --teal:#06d6a0;
      --ocean:#118ab2;
      --sun:#ffd166;
      --dark:#033;
      --white:#ffffff;
    }

    * {
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family:'Poppins',sans-serif;
    }

    html {
      scroll-behavior:smooth;
    }

    body {
      background:#f6fffd;
      color:#033;
    }
	
	img {
    width: 100%;
}
	
	.maincontainer {
    width: 75%;
    margin-right: auto;
    margin-left: auto;
    padding: 3px;
    background-repeat: repeat;
}

.space {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    clear: both;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;
}
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    /* ================= NAVBAR ================= */
    header {
      background:linear-gradient(90deg,var(--teal),var(--ocean));
      position:fixed;
      width:100%;
      top:0;
      z-index:1000;
      box-shadow:0 4px 12px rgba(0,0,0,.15);
    }

    .logo {
      color:var(--white);
      font-weight:700;
      font-size:22px;
    }

   /* NAVIGATION */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    position: relative;
}

.menu li a {
    display: block;
    padding: 12px 18px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.menu li a:hover {
    background: #007f7f;
}

/* SUBMENU */
.menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #00a8a8;
    display: none;
    min-width: 180px;
    list-style: none;
}

.menu li:hover ul {
    display: block;
}

.menu li ul li a {
    padding: 10px;
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}



    /* Hamburger */
    .hamburger {
      display:none;
      flex-direction:column;
      cursor:pointer;
      gap:5px;
    }

    .hamburger span {
      width:25px;
      height:3px;
      background:white;
      border-radius:3px;
      transition:.3s;
    }

    /* ================= HERO ================= */
    .hero {
      height:100vh;
      background:url("hero.jpg") center/cover no-repeat;
      display:flex;
      justify-content:center;
      align-items:center;
      text-align:center;
      padding:20px;
      margin-top:70px;
    }

    .hero-content {
      background:rgba(0,0,0,.45);
      padding:50px 30px;
      border-radius:18px;
      color:white;
      max-width:600px;
    }

    .hero h1 {
      font-size:48px;
      margin-bottom:15px;
    }

    .btn {
      display:inline-block;
      margin-top:20px;
      padding:12px 30px;
      border-radius:30px;
      background:var(--sun);
      color:var(--dark);
      font-weight:600;
      text-decoration:none;
      transition:.3s;
    }

    .btn:hover {
      background:white;
    }


.inqbutton {
    display: block;
    width: 30%;
    margin-left: auto;
    margin-right: auto;
}

    /* ================= FEATURES ================= */
    section {
      padding:80px 20px;
    }

    .container {
      max-width:1100px;
      margin:auto;
    }

    .grid {
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
      gap:25px;
      margin-top:40px;
    }

    .card {
      background:white;
      padding:30px;
      border-radius:18px;
      box-shadow:0 10px 20px rgba(0,0,0,.08);
      text-align:center;
      transition:.3s;
    }

    .card:hover {
      transform:translateY(-6px);
    }

    /* ================= ABOUT ================= */
    .about {
      background:linear-gradient(135deg,var(--teal),var(--ocean));
      color:white;
      text-align:center;
    }
	
	/* ===== CONTACT ===== */
    form {
      max-width: 600px;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    label {
      font-weight: bold;
      display: block;
      margin-top: 10px;
    }
    input, textarea, select {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 14px;
    }
    textarea {
      resize: vertical;
      height: 120px;
    }
    button {
      margin-top: 15px;
      width: 100%;
      padding: 12px;
      border: none;
      background: #007BFF;
      color: white;
      font-size: 16px;
      border-radius: 5px;
      cursor: pointer;
    }
    button:hover {
      background: #0056b3;
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--dark-navy);
      color: white;
      text-align: center;
      padding: 20px;
      font-size: 14px;
    }

    /* ================= FOOTER ================= */
    footer {
      background:#022;
      color:white;
      text-align:center;
      padding:18px;
    }

/*  GRID COLUMN SETUP   ==================================================================== */

.col {
	display: block;
	float: left;
	margin-bottom: 0;
	margin-left: 0;
	margin-right: 2px;
	margin-top: 0;
}
.col:first-child {
	margin-left: 2px;
}

/* all browsers except IE6 and lower */


/*  REMOVE MARGINS AS ALL GO FULL WIDTH AT 480 PIXELS */

@media only screen and (max-width: 480px) {
	.col {
		margin: 1% 0 1% 0%;
	}
}

/*  GRID OF FOUR   ============================================================================= */

.span_4_of_4 {
	width: 100%;
}
.span_3_of_4 {
	width: 75%;
	margin-left: 3px;
	margin-right: 2px;
}
.span_2_of_4 {
	width: 49%;
	font-size: 1.0 em;
	margin-top: 20px;
	text-align: left;
}
.span_1_of_4 {
	padding: 0.1em;
	width: 24%;
}

/*  GRID OF THREE   ============================================================================= */

.span_3_of_3 {
	width: 100%;
}
.span_2_of_3 {
	width: 65%;
	font-size: 1.0 em;
	text-align: left;
	padding: 0.2em;
}
.span_1_of_3 {
	padding: 0.2em;
	width: 32.5%;
}

/*  GRID OF TWO   ============================================================================= */

.span_2_of_2 {
	width: 100%;
}
.span_1_of_2 {
	width: 48%;
	text-align: justify;
	font-size: 0.3 em;
	margin-right: 5px;
	margin-left: 5px;
}


    /* ================= MOBILE ================= */
    @media (max-width: 768px) {

      .hamburger {
        display:flex;
      }

     /* RESPONSIVE */
@media (max-width: 768px) {

    .menu {
        position: absolute;
        top: 60px;
        left: 0;
        background: #00a8a8;
        width: 100%;
        flex-direction: column;
        display: none;
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        text-align: center;
    }

    .menu li ul {
        position: static;
        display: none;
    }

    .menu li.active ul {
        display: block;
    }

    .menu-toggle {
        display: block;
    }

      .hero h1 {
        font-size:30px;
      }
	  
	  .span_2_of_3 {
		width: 100%;
	}
	.span_1_of_3 {
		width: 100%;
		padding: 0.1em;
	}
	.span_2_of_2 {
		width: 100%;
	}
	.span_1_of_2 {
		width: 99%;
	}
		.span_2_of_4 {
		width: 100%;
	}
	.inqbutton {
		width: 80%;
	}
	.maincontainer {
		width: 95%;
		margin-right: auto;
		margin-left: auto;
		padding: 3px;
		text-align: left;
	}
	.span_3_of_4 {
		width: 100%;
	}
	.span_1_of_4 {
		width: 49%;
	}
    }
	
	/*  GO FULL WIDTH AT LESS THAN 640 PIXELS */

@media only screen and (max-width: 640px) {
	.maincontainer {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	padding: 3px;
	background-image: none;
}
	.span_1_of_4 {
		width: 98%;
	}
	.span_2_of_4 {
		width: 100%;
	}
	.span_1_of_3 {
		width: 100% !important;	
	}
	.span_2_of_3 {
		width: 100%;
	}
	.header {
		width: 100%;
		margin-right: auto;
		margin-left: auto;
	}
	.homecontainer {
	width: 64%;
	padding-right: 1px;
	}
   .text1 {
	    font-size: 1.0em;
		
   }
   p {
	    text-align: justify !important;   
	}
	
}