/* ------------ GOOGLE FONT (SINGLE SOURCE) ------------ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ------------ RESET ------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


/* ------------ NAVBAR ------------ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
    background-color: #fff;
}

/* Main Nav Menu */
.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Remove bullets from nav items */
.nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Nav Links */
.nav-link {
    font-size: 18px;
    color: #12447a;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover */
.nav-link:hover {
    color: #6fff00;
}

/* Dropdown container */
.dropdown {
    position: relative;
}

/* Dropdown indicator arrow – modern chevron */
.has-dropdown::after {
    content: " ▾";
    font-size: 22px;
    margin-left: 6px;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

/* Rotate chevron on hover */
.dropdown:hover .has-dropdown::after {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 220px;
    margin: 0;
    padding: 0;
    background: #ffffff;
    list-style: none;
    z-index: 2000;
}

/* Dropdown items */
.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Dropdown links */
.dropdown-item {
    display: block;
    padding: 10px 15px;
    color: #000;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Show dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hover effects */
.dropdown-menu li:hover {
    background-color: #6fff00;
}

.dropdown-menu li:hover .dropdown-item {
    color: #000000;
}

/* Final safety: remove browser bullets */
.nav-menu li::marker,
.dropdown-menu li::marker {
    content: none;
}


/* CONTACT BUTTON */
.my-btn {
    padding: 12px 25px;   /* Increased size */
    background-color: #6fff00;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;      /* Bigger text */
}

.my-btn:hover {
    background-color: #12447a;
}

/* ------------ MOBILE MENU ------------ */

.menu-icon {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: #1E93AB;
}

/* Mobile View */
@media(max-width: 768px) {

    .menu-icon {
        display: block;
    }

    .desktop-btn {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px 0;
        display: none;
        box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu li {
        padding: 10px 0;
        text-align: center;
    }

    /* Dropdown inside mobile */
    .dropdown-menu {
        position: relative;
        width: 100%;
        display: none;
        box-shadow: none;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }
}



/* HERO SECTION */

.tc-hero{
  background:
  linear-gradient(rgba(15,23,42,0.88), rgba(30,64,175,0.88)),
  url('https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=1400&auto=format&fit=crop');

  background-size:cover;
  background-position:center;

  padding:100px 20px;
  text-align:center;
  color:#fff;
}

.tc-hero-content{
  max-width:900px;
  margin:auto;
}

.tc-hero h1{
  font-size:58px;
  margin-bottom:18px;
  font-weight:700;
}

.tc-hero p{
  font-size:19px;
  opacity:0.95;
}

/* WRAPPER */

.tc-wrapper{
  max-width:1300px;
  margin:60px auto;
  padding:0 20px;
}

/* CONTAINER */

.tc-container{
  background:#fff;
  padding:60px;
  border-radius:24px;

  box-shadow:
  0 10px 25px rgba(0,0,0,0.05),
  0 20px 50px rgba(0,0,0,0.08);
}

/* SECTION */

.tc-section{
  margin-bottom:55px;
  padding-bottom:45px;
  border-bottom:1px solid #e5e7eb;
}

.tc-section:last-child{
  border-bottom:none;
  margin-bottom:0;
  padding-bottom:0;
}

/* HEADING */

.tc-section h2{
  font-size:30px;
  color:#0f172a;
  margin-bottom:25px;
  position:relative;
  padding-left:22px;
}

.tc-section h2::before{
  content:"";
  position:absolute;
  left:0;
  top:6px;
  width:7px;
  height:34px;
  border-radius:20px;
  background:#2563eb;
}

/* PARAGRAPH */

.tc-section p{
  font-size:17px;
  color:#475569;
  margin-bottom:22px;
  text-align:justify;
}

/* LIST */

.tc-section ul{
  margin-left:30px;
  margin-top:20px;
}

.tc-section ul li{
  margin-bottom:14px;
  color:#475569;
  font-size:16px;
}

/* CONTACT BOX */

.tc-contact{
  background:#eff6ff;
  border-left:6px solid #2563eb;
  padding:30px;
  border-radius:18px;
}

.tc-contact a{
  color:#2563eb;
  text-decoration:none;
  font-size:18px;
  font-weight:bold;
}

.tc-contact a:hover{
  text-decoration:underline;
}


/*-- Footer section --*/

/* MAIN FOOTER */
.footer {
    background: linear-gradient(135deg, #0a2b00, #018508, #2c6441);
    color: #fff;
    padding-top: 70px;   /* only top padding */
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;   /* move side padding here */
    m
}

/* 4 COLUMN LAYOUT */
.footer-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* COLUMN */
.footer-col {
    flex: 1;
    min-width: 250px;
}

/* HEADINGS */
.footer-col h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col h4 {
    margin: 15px 0;
}

/* TEXT */
.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 10px;
}

.footer-col p + p {
    margin-top: 30px;
}

/* LOGO */
.footer-logo {
    width: 120px;
    margin-bottom: 0px;
}

/* FORM */
.footer-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
    outline: none;
}

.footer-form button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background: #00e0ff;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.footer-form button:hover {
    background: #fff;
}

/* QUICK LINKS */
.quick-links {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    text-decoration: none;
    color: #ddd;
    transition: 0.3s;
}

.quick-links a:hover {
    color: #00e0ff;
    padding-left: 5px;
}

/* SOCIAL ICONS */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #00e0ff;
    transform: translateY(-5px);
}

/* BOTTOM BAR */
.footer-bottom {
    width: 100%;
    margin-top: 50px;
    padding: 15px 0;
    text-align: center;
    background: rgb(0, 9, 31);
    font-size: 14px;
    color: #ccc;
}