 

/* ===== BODY ===== */
body {
    margin: 0;
     background: url('../image/garden.jpg') no-repeat center center fixed;
    /*background-size: cover;*/
}
/*logo*/
.style-info {
    position: relative;
    text-align: center; /* center H1 & H3 */
}       
.style-info img path{
    stroke:#0a2aff;
    stroke-width:30;
    fill:none;
}
   

.style-info img {
    position: absolute;
    left: 500px;   /* logo left */
    top: 50%;
    transform: translateY(-50%); /* vertical center */
    width:80px;
    height:80px;
}

/* ===== TITLE ===== */
.style-info {
    text-align: center;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.style-info h1 {
    font-size: 40px;
    font-weight: 900;
    color: #0A1F44;
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.style-info h3 {
    font-size: 16px;
    color: #FF6B00;
    letter-spacing: 2px;
    margin-top: 5px;
    text-transform: uppercase;
}

/* ===== NAVBAR ===== */
 
/* Navbar container */
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.menu {
  list-style: none;
  display: flex;
  justify-content: center;   /* ðŸ”¥ THIS centers everything */
  align-items: center;
  background-color: #0d2a4a;
  margin: 0;
  padding: 0;
}

/* Menu items */
.menu li {
  position: relative;
}

/* Links */
.menu li a {
  display: block;
  padding: 15px 25px;
  color: white;
  text-decoration: none;
  
}

/* Hide dropdown initially */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left:0;
  background-color:#0d2a4a;
  min-width: 200px;
}

/* Show on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* ALSO show on click (focus) */
.dropdown:focus-within .dropdown-menu {
  display: block;
}

/* Dropdown items */
.dropdown-menu li a {
  padding: 4px 15px;
  white-space: nowrap;
}

/* Hover effect */
.dropdown-menu li a:hover {
  background-color: #1c3d66;
}
  .menu li a:hover {
            background-color: #1c3d66;
        }

/* ===== HERO ===== */
.hero {
    color: black;
    padding: 80px 20px;
    text-align: center;
}

.btn {
    padding: 10px 20px;
    color: white;
    text-decoration: none;
}

/* ===== SERVICES ===== */
.services {
    padding: 20px;
    text-align: center;
     background: #f2f4f7;
}

/*.cards {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    flex-wrap: wrap;*/
/*}*/

/*.card {*/
/*    background: white;*/
/*    padding: 20px;*/
/*    margin: 15px;*/
/*    width: 260px;*/
/*    box-shadow: 0 0 10px #ccc;*/
/*    border-radius: 8px;*/
/*    transition: 0.3s;*/
/*}*/

/*.card:hover {*/
/*    background: #0A1F44;*/
/*    color: white;*/
/*    box-shadow: 0 10px 25px rgba(0,0,0,0.3);*/
/*}*/

/*.cards a{*/
/*    text-decoration: none;*/
/*     color: black;*/
/*}*/

.industries h2, .services h2 {
    font-size: 36px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

/* 🔥 Animated underline */
.industries h2::after, .services h2::after {
    content: "";
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b00, #ffcc00);
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.4s ease;
}

.industries h2:hover::after,
.services h2:hover::after {
    width: 100%;
}
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.card {
    width: 260px;
    padding: 30px 20px;
    border-radius: 15px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.4s;
        font-family: 'Segoe UI', sans-serif;
}

/* Hover glow */
.card:hover {
    transform: translateY(-12px) scale(1.05);
    background: linear-gradient(135deg, #ff6b00, #ffcc00);
    color: black;
    box-shadow: 0 0 20px rgba(255,165,0,0.6);
}

.card h3 {
    font-size: 18px;
    letter-spacing: 1px;
}
.cards a {
    text-decoration: none;
    color: black;
    position: relative;
}

/* underline animation */
.cards a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: orange;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.cards a:hover::after {
    width: 100%;
}
.quote-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, #ff6b00, #ffcc00);
    color: black;
    font-weight: bold;
    text-decoration: none;
    transition: 0.4s;
}

.quote-btn:hover {
    background: white;
    color: black;
    transform: scale(1.1);
}



/* ===== ABOUT ===== */
.about {
    padding: 20px;
    text-align: center;
}

/* ===== FOOTER ===== */
.main-footer {
    background: #0f172a;
    color: #ccc;
}

/* Top bar */
.footer-top {
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
}

/* Social */
.social-icons a {
    color: white;
    margin-left: 15px;
}

/* Footer content */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 40px 20px;
}

.footer-box {
    width: 220px;
}

.footer-box h3 {
    color: white;
}

.footer-box a {
    color: #ccc;
    display: block;
    text-decoration: none;
}

.footer-box a:hover {
    color: white;
    padding-left: 5px;
}

/* Footer bottom */
.footer-bottom {
    text-align: center;
    padding: 10px;
    color: #aaa;
}

/* ===== INDUSTRIES SECTION ===== */
.industries {
    text-align: center;
    padding: 10px 20px;
    /*background: #f2f4f7;*/
    
}

/* Title */
.industries h2 {
    font-size: 36px;
    color: #e53935;
    margin-bottom: 0px;
}

/* Small underline */
.underline {
    width: 60px;
    height: 3px;
    background: #f4b400;
    margin: 10px auto 20px;
    border-radius: 5px;
}

/* Subtitle */
.industries p {
    color: #555;
    margin-bottom: 30px;
}

/* Pills container */
.industry-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 900px;
    margin: auto;
}

/* Each pill */
.industry-list span {
    background: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    color: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

/* Hover effect */
.industry-list span:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Button */
.quote-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 25px;
    background: #f4b400;
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s;
}

/* Button hover */
.quote-btn:hover {
    background: #e09e00;
}
 /*body-card*/
.body-card {
    /*background: #fff;*/
    /*padding: 30px;*/
    /*margin: 30px;*/

    /*border-radius: 12px;*/

    /*box-shadow: 0 8px 25px rgba(0,0,0,0.12),*/
    /*            0 4px 10px rgba(0,0,0,0.08);*/
}








/* ===== MOBILE RESPONSIVE ONLY ===== */
@media (max-width: 768px) {

    /* LOGO FIX */
    .style-info {
        text-align: center;
        padding-top: 20px;
    }

    .style-info img {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        display: block;
        margin: 0 auto 10px;
    }

    /* TEXT SIZE */
    .style-info h1 {
        font-size: 24px;
    }

    .style-info h3 {
        font-size: 12px;
    }

    /* NAVBAR STACK */
    .menu {
        flex-direction: column;
    }

    .menu li {
        width: 100%;
        text-align: center;
    }

    .menu li a {
        padding: 12px;
        border-top: 1px solid #1c3d66;
    }

    /* DROPDOWN FULL WIDTH */
    .dropdown-menu {
        position: static;
        width: 100%;
    }

    /* HERO */
    .hero {
        padding: 40px 10px;
    }

    /* CARDS STACK */
    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }

    /* INDUSTRIES */
    .industry-list {
        flex-direction: column;
        align-items: center;
    }

    /* FOOTER STACK */
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-box {
        width: 100%;
        margin-bottom: 20px;
    }

    /* BODY CARD */
    .body-card {
        margin: 15px;
        padding: 20px;
    }
}









