body {
    font-family: 'Poppins', sans-serif;
    color: #0b1c2d;
}

/* ===== NAVBAR ===== */
.custom-navbar {
    background: #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.desktop-menu {
    list-style: none;
    display: flex;
    gap: 35px;
    align-items: center;
    margin: 0;
}

.desktop-menu a {
    text-decoration: none;
    color: #0b1c2d;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.desktop-menu a:hover {
    color: #007ce1;
}

/* Start Button */
.start-btn {
    background: #f74b00;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}

/* ===== HAMBURGER ===== */
.hamburger {
    width: 26px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    height: 3px;
    background: #0b1c2d;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    padding: 18px 20px;
    transition: 0.4s ease;
    z-index: 2000;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

/* Header (logo + close icon) */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.close-menu {
    font-size: 30px;
    cursor: pointer;
}

/* Menu Links */
.mobile-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-links li {
    margin-bottom: 18px;
}

.mobile-links a {
    text-decoration: none;
    font-size: 18px;
    color: #0b1c2d;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

/* Bottom Buttons */
.mobile-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-btn {
    background: #eef4ff;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: #007ce1;
    font-weight: 500;
}

.mobile-start {
    text-align: center;
    padding: 14px;
    border-radius: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .desktop-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}


/* HERO */
.hero-section {
    height: 657px;
    background: linear-gradient(to right, rgb(255 255 255 / 88%) 40%, rgba(255, 255, 255, 0.15)), url(../image/Gemini_Generated_Image_i7jz8pi7jz8pi7jz.png) center / cover no-repeat;
    /* background: linear-gradient(to right, rgb(255 194 166 / 88%) 40%, rgba(255, 255, 255, 0.15)), url(../image/Gemini_Generated_Image_i7jz8pi7jz8pi7jz.png) center / cover no-repeat; */
    display: flex;
    align-items: center;
    height: 532px;
    box-shadow: 0 0 2px #00000042;
}

/* Title */
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #111;
}

/* Rockads highlight */
.highlight {
    color: #f74b00;
    position: relative;
}

.highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 6px;
    background:#f74b00;
    border-radius: 20px;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.1rem;
    color: #555;
}


/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-section {
        text-align: center;
        padding: 40px 0;
    }
}

.services-card {
    background: #f0fcf8;
    border-radius: 24px;
    padding: 50px 0px 0px 50px;
    overflow: hidden;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
}

.core-title {
    color: #00c088;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.core-subtext {
    color: #222f47;
    margin-bottom: 20px;
    font-size: 23px;
    font-weight: 500;
}

.platforms img {
    height: 37px;
    margin-right: 15px;
}

/* LIST */
.services-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 10px;
}

.services-list li {
    padding: 18px 0;
    border-bottom: 1px solid #ccfbf1;
}

/* HEADING + ICON */
.service-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.icon-box {
    width: 36px;
    height: 36px;
    background: #04ffb63b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    color: #00c088;
    font-size: 16px;
}




/* BUTTON */
.hero-btn {
    background: #f64b01;
    color: #fff;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: none;
}

.hero-btn .arrow {
    transition: transform 0.3s ease;
}

.hero-btn:hover {
    background: #da4200;
    color: #fff;
}

.hero-btn:hover .arrow {
    transform: translateX(6px);

}

/* BUTTON */
.hero-btn1 {
    background: #00c088;
    color: #fff;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: none;
}

.hero-btn1 .arrow {
    transition: transform 0.3s ease;
}

.hero-btn1:hover {
    background: #00a070;
    color: #fff;
}

.hero-btn1:hover .arrow {
    transform: translateX(6px);

}
/* IMAGE */
.services-img {
    max-width: 100%;
    position: relative;
    z-index: 2;
}

/* COLOR CURVES */
.curve {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.curve-blue {
    width: 200px;
    height: 200px;
    background: #0ea5e9;
    right: 30px;
    bottom: 60px;
}

.curve-green {
    width: 150px;
    height: 150px;
    background: #22c55e;
    right: 160px;
    bottom: 20px;
}

.curve-orange {
    width: 180px;
    height: 180px;
    background: #f59e0b;
    right: 90px;
    bottom: -40px;
}

.partner-section {
    padding: 90px 0;
}

 
/* Title */
.partner-title {
    color: #c2a441;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Subtitle */

/* Feature Blocks */
.partner-feature {
    padding: 22px 0;
    border-bottom: 1px solid #f3e8c5;
}

.feature-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.icon-circle {
    width: 36px;
    height: 36px;
    background: #fef3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c2a441;
    font-size: 16px;
}


.partner-feature p {
    margin: 5px 0 0;
    font-size: 0.95rem;
    color: #242525;
}

/* Powered by */
.powered-by {
    margin-top: 30px;
    font-weight: 500;
    color: #111;
}

.torch-icon {
    margin: 0 6px;
}

/* Button */
.partner-btn {
    background: #c2a441;
    color: #fff;
    padding: 13px 30px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: none;
}

.partner-btn .arrow {
    transition: transform 0.3s ease;
}

.partner-btn:hover {
    background: #a58a32;
    color: #fff;
}

.partner-btn:hover .arrow {
    transform: translateX(6px);
}

/* Right Image */
.partner-img {
    max-width: 100%;
    position: relative;
    z-index: 2;
    margin-top: 33%;
}

/* Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.shape-purple {
    width: 200px;
    height: 200px;
    background: #6c63ff;
    top: 30%;
    right: 20%;
}

.shape-pink {
    width: 140px;
    height: 140px;
    background: #ff4da6;
    bottom: 20%;
    right: 35%;
}

.shape-green {
    width: 160px;
    height: 160px;
    background: #a3e635;
    top: 10%;
    right: 5%;
}
.footer-section {
  background: #0f172a;
  padding: 25px 0;
  color: #94a3b8;
  font-family: 'Poppins', sans-serif;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

/* Social Icons */
.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1e293b;
  color: #fff;
  margin-left: 8px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.social-icons a:hover {
  background: #007ce1;
}

/* Responsive */
@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

 
 
/* SECTION TITLE */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
}
 

/* Core Heading */
/* .core-title {
     color: #00b386;
     font-weight: 700;
     font-size: 1.6rem;
 } */


/* Platforms */
.platforms span {
    display: inline-block;
    font-size: 0.9rem;
    margin-right: 15px;
    color: #0f172a;
    font-weight: 500;
}

/* Service List */
.services-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.services-list li {
    padding: 18px 0;
    border-bottom: 1px solid #d1fae5;
}

.services-list strong {
    display: block;
    color: #151b26;
    font-weight: 600;
    font-size: 19px;
}

.services-list p {
    margin: 5px 0 0;
    font-size: 0.95rem;
    color: #242525;
}

/* Right Image */
.services-img {
    max-width: 100%;
    border-radius: 15px;
    margin-top: 67%;
}

/* Responsive */
@media (max-width: 991px) {
    .services-card {
        padding: 10px 0px 0px 10px;
    }

    .services-img {
        margin-top: 0%;
    }

    .core-title {
        font-size: 25px;
        font-weight: 600;
    }

    .core-subtext {
        font-size: 19px;
    }

    .services-list strong {
        font-weight: 600;
        font-size: 17px;
    }

    .section-title {
        font-size: 20px;
        font-weight: 600;
    }

    .partner-card {
        padding: 10px 0px 0px 10px !important;
    }

    .partner-title {
        font-size: 25px;
        font-weight: 600;
    }

    .partner-subtitle {
        font-size: 19px !important;

    }

    .partner-feature h5 {
        font-weight: 600 !important;
        font-size: 17px !important;
    }

    .partner-img {
        margin-top: 0%;

    }
}

/* PARTNER SECTION */
.partner-section {
    padding: 80px 0;
}

.partner-card {
    background: #fffce7;
    border-radius: 20px;
    padding: 50px 0px 0px 50px;
    position: relative;
    overflow: hidden;
}

/* Title */


/* Subtitle */
.partner-subtitle {
    margin: 15px 0 30px;
    color: #222f47;
    margin-bottom: 20px;
    font-size: 23px;
    font-weight: 500;
}

/* Features */
.partner-feature {
    padding: 20px 0;
    border-bottom: 1px solid #f3e8c5;
}

.partner-feature h5 {
    margin-bottom: 5px;
    display: block;
    color: #151b26;
    font-weight: 600;
    font-size: 19px;
}


/* Powered by */
.powered-by {
    margin-top: 25px;
    font-weight: 500;
}

.powered-by strong {
    color: #000;
    margin-left: 5px;
}

/* RIGHT IMAGE */


/* Decorative Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.shape-purple {
    width: 180px;
    height: 180px;
    background: #6c63ff;
    top: 30%;
    right: 20%;
}

.shape-pink {
    width: 120px;
    height: 120px;
    background: #ff4da6;
    bottom: 20%;
    right: 35%;
}

.shape-green {
    width: 140px;
    height: 140px;
    background: #a3e635;
    top: 10%;
    right: 5%;
}

/* Responsive */