/**
* Template Name: QuickStart
* Template URL: https://bootstrapmade.com/quickstart-bootstrap-startup-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: "Roboto",  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: "Nunito",  sans-serif;
  --nav-font: "Inter",  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: #3d4348; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #3e5055; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #388da8; /* 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: #313336;  /* The default color of the main navmenu links */
  --nav-hover-color: #77b6ca; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #313336; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #77b6ca; /* 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: #f8fbfc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --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);
}

/* PHP Email Form Messages
------------------------------*/
/* .php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
} */

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  height: 50px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 480px) {
  .header .logo img {
    max-height: 24px;
  }

  .header .logo h1 {
    font-size: 24px;
  }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.5s ease-in-out;
    box-shadow: none;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# 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 {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs 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: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height:100vh;
  position: relative;
  padding: 180px 0 40px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .hero-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .hero-bg::before {
  content: "";
background: color-mix(in srgb, rgb(0, 0, 0) 60%, transparent);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}



/*--------------------------------------------------------------
# my css 
--------------------------------------------------------------*/
/* Form Styling */
.form-container {

  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  background-color: #ffcc00;

    margin-left: 80px;
}

.form-container .form-title {
  font-size: 1.6rem;
  color: #ffffff;
  font-weight: bold;
}

.form-container .form-label {
  font-weight: 500;
  color: #4d4d4d;
}

.form-container .form-control {
  border-radius: 5px;
}

.form-container button[type="submit"] {
  background-color: #000000;
  color: rgb(255, 255, 255);
  font-weight: bold;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.form-container button[type="submit"]:hover {
  background-color: #fff240;
}


/* Responsive Design */
@media (max-width: 992px) {
  

  .form-container {
    padding: 15px;
    margin-top:-34px;
    margin-left: 2px;
    height: 400px;
  }

  .form-container .form-title {
    font-size: 1.2rem;
  }
}


/* style for heading in banner */
/* Hero Section */
.hero-section {
 
   margin-bottom: 50px;
   margin-right: -10px;
}


/* left side text from banner */

  /* College Title */


/* College Title */
.college-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 60px;
  margin-top: -54px;
}


.college-title .line1,
.college-title .line2 {
  color: #ffffff; /* Strong Blue */
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 2px 2px 0 #fff, 4px 4px 10px rgba(0,0,0,0.3);
  display: block;
  line-height: 1rem;
}

.college-title .line1 {
  font-size: 3.5rem;
}

.college-title .line2 {
  font-size: 4rem;
  margin-top: 5px;
}

/* Admission Tag */
.admission-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin: 15px 0;
  letter-spacing: 1px;
}

/* Tagline */
.tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #eaeaea;
  margin-bottom: 25px;
  max-width: 500px;
  line-height: 1.4;
}

/* Highlight Text */
.highlight {
  color: #c43a3a;
  font-weight: 900;
  font-size: 30px;
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #ffcc00, #ffaa00);
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease-in-out;
}

.cta-btn:hover {
  background: linear-gradient(135deg, #ffaa00, #ffcc00);
  transform: translateY(-3px);
  box-shadow: 0px 6px 20px rgba(0,0,0,0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .college-title .line1 {
    font-size: 2.8rem;
  }
  .college-title .line2 {
    font-size: 3.2rem;
  }
  .admission-text {
    font-size: 1.5rem;
  }
  .tagline {
    font-size: 1.1rem;
    max-width: 400px;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 12px 28px;
  }
}

@media (max-width: 768px) {
  .college-title .line1 {
    font-size: 2.2rem;
  }
  .college-title .line2 {
    font-size: 2.6rem;
  }
  .admission-text {
    font-size: 1.3rem;
  }
  .tagline {
    font-size: 1rem;
    max-width: 300px;
  }
  .cta-btn {
    font-size: 0.95rem;
    padding: 10px 24px;
  }
}

@media (max-width: 576px) {
  .college-title .line1 {
    font-size: 1.8rem;
    margin-top: -85px;
    margin-bottom: -20px;
  }
  .college-title .line2 {
    font-size: 2.2rem;
  }
  .admission-text {
    font-size: 1.1rem;
  }
  .tagline {
    font-size: 0.95rem;
    max-width: 250px;
    margin-left: 47px;
  }
  .cta-btn {
    font-size: 0.9rem;
    padding: 8px 20px;
  }
}




  /* another */
.mat-highlights {
  max-width: 800px;
  margin: -71px 10;
  padding: 20px;
  font-family: 'Arial', sans-serif;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
margin-left: 300px;

}

.mat-highlights h2 {
  text-align: center;
  font-size: 2rem;
  color: #1a73e8;
  margin-bottom: 25px;
}

.highlight-table {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12px 25px;
}

.highlight-table .row {
  display: contents;
}

.highlight-table .param {
  font-weight: 600;
  color: #333;
}

.highlight-table .details {
  color: #555;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .highlight-table {
    grid-template-columns: 1fr;
  }
  .highlight-table .param {
    font-weight: 700;
    margin-top: 15px;
  }
  .highlight-table .details {
    margin-bottom: 10px;
  }
  .mat-highlights {
  max-width: 800px;
  margin: -71px 10;
  padding: 20px;
  font-family: 'Arial', sans-serif;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin-left: -2px;


}
}




/* hero img  */

.hero {
  /* Full width and height */
  width: 100%;
  height: 700px; /* adjust as needed */
  
  /* Background image settings */

  background-size: cover;       /* cover the entire section */
  background-position: center;  /* center the image */
  background-repeat: no-repeat; /* prevent repeating */
  
  /* Flex for vertical alignment */
  display: flex;
  align-items: center;

  /* Optional: overlay for text readability */
  position: relative;
  color: #fff;
}

/* Overlay to darken background */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}

@media (max-width: 768px) {

  .hero {
  /* Full width and height */
  width: 100%;
  height: 917px; /* adjust as needed */
  
  /* Background image settings */
  background-image: url('./assets/img/girl.webp');
  background-size: cover;       /* cover the entire section */
  background-position: center;  /* center the image */
  background-repeat: no-repeat; /* prevent repeating */
  
  /* Flex for vertical alignment */
  display: flex;
  align-items: center;

  /* Optional: overlay for text readability */
  position: relative;
  color: #fff;
}

/* Overlay to darken background */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}
}






    /* banner */

    /* Banner Styles */
.banner {
  width: 100%;
  background: linear-gradient(135deg, #0073e6, #00c6ff);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  box-sizing: border-box;
  margin-top: 60px;
  height: 280px;
}

.banner-content {
  max-width: 1000px;
  margin: 0 auto;
}

.banner h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: whitesmoke;
  margin-top: -30px;
}

.banner p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.banner-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  background: #fff;
  color: #0073e6;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.banner-btn:hover {
  background: #f1f1f1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .banner h2 {
    font-size: 1.6rem;
  }
  .banner p {
    font-size: 1rem;
  }

  .banner {
  width: 100%;
  background: linear-gradient(135deg, #0073e6, #00c6ff);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  box-sizing: border-box;
  margin-top: 60px;
  height: 400px;
}
}

.banner-btn {
  margin-top: 20px;
  padding: 12px 25px;
  background: #ff9800;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.banner-btn:hover {
  background: #e68900;
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  text-align: left;
}

.close-btn {
  position: absolute;
  right: 15px; top: 10px;
  font-size: 22px;
  cursor: pointer;
}

.popup-content h3 {
  margin-bottom: 15px;
  color: #004080;
}

.popup-content label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

.popup-content input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.submit-btn {
  margin-top: 15px;
  width: 100%;
  padding: 12px;
  border: none;
  background: #004080;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #00264d;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .banner h2 {
    font-size: 20px;
  }
  .banner p {
    font-size: 14px;
  }
  .banner-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}



  /* thankyou.html */

 .thank-you-message {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 12px;
  width: 500px !important;
  margin: 20px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 450px !important;
  margin-top: -10px;
}

.thank-you-message .message-box h3 {
  color: rgb(0, 0, 0);
  font-size: 75px;
  margin-bottom: 10px;
}

.thank-you-message .message-box p {
  font-size: 54px;
  color: #000000;
  margin: 0;
  font-weight: bold;
}

@media (max-width: 576px) {
  .thank-you-message {
    padding: 20px;
    max-width: 90%;
    height: 200px !important;
    margin-top: -20px;
  }

  .thank-you-message .message-box h3 {
    font-size: 24px;
  }

  .thank-you-message .message-box p {
    font-size: 16px;
  }
}


/* hero btn */

.cta-btn {
  display: inline-block;
  background: #0073e6;       /* Blue background */
  color: #fff;               /* White text */
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 115, 230, 0.3);
  transition: all 0.3s ease-in-out;
}

.cta-btn:hover {
  background: #ffffff;       /* Darker blue on hover */
  box-shadow: 0 6px 16px rgba(0, 91, 181, 0.4);
  transform: translateY(-2px);
  color: black;
}


 



/* nav bar */

/* Navbar Styling */
.navbar {
  background: #ffffff; /* White background */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 0.8rem 1rem;
  z-index: 1000;
}

/* Logo */
.navbar-brand img {
  max-height: 50px;
}

/* Navbar Links */
.navbar-nav .nav-link {
  font-size: 1rem;
  font-weight: 500;
  margin: 0 30px;
  color: #000000;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  position: relative;
}

/* Hover & Active Effect */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #e7c737; /* Primary blue highlight */
}

.navbar-nav .nav-link.active {
  color: #007bff;
  font-weight: 600;
}

/* Phone number style */
.navbar a[href^="tel:"] {
  font-size: 1.1rem;
  font-weight: bold;
  color: #222;
  text-decoration: none;
}

.navbar a[href^="tel:"]:hover {
  color: #007bff;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
    margin-top: 15px;
  }

  .navbar-nav .nav-link {
    display: block;
    margin: 10px 0;
    font-size: 1.1rem;
  }

  .navbar a[href^="tel:"] {
    margin-top: 10px;
    display: inline-block;
  }
}



.disclaimer-box {
  background: #fff8e1;
  border-left: 6px solid #ff9800;
  padding: 20px 25px;
  margin: 30px auto;
  max-width: 1100px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  font-family: Arial, sans-serif;
}

.disclaimer-box h4 {
  margin-bottom: 10px;
  color: #e65100;
  font-size: 20px;
  font-weight: 600;
}

.disclaimer-box p {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .disclaimer-box {
    padding: 15px;
    margin: 20px 15px;
  }

  .disclaimer-box h4 {
    font-size: 18px;
  }

  .disclaimer-box p {
    font-size: 14px;
  }
}



/* form */




/* msrit css */

/* banner text left side */


 /* MAIN SECTION */
    #admission-banner {
      position: relative;
      background-image: url('/rv-college-of-engineering-admission/assets/img/bannermsrit.jpg');
      background-size: cover;
      background-position: center;
      padding: 80px 20px;
    }

    /* OVERLAY */
    #admission-banner::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background: rgba(50, 50, 50, 0.75);
      z-index: 1;
    }

    #admission-banner .banner-content {
      position: relative;
      z-index: 2;
    }

    /* LEFT TEXT */
    .banner-title {
      font-size: 59px;
      font-weight: 900;
      color: #ffffff;
      line-height: 1.3;
      margin-bottom: 15px;
    }

    .banner-description {
      font-size: 18px;
      color: #e0e0e0;
      line-height: 1.7;
    }

    /* FORM BOX */
    .enquiry-box {
      background: #ffffff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.25);
      max-width: 380px;
      width: 100%;
      height: 410px;
    }

    .enquiry-title {
      text-align: center;
      margin-bottom: 15px;
      font-weight: 600;
      color: #0f2b5b;
    }

    /* INPUTS */
    .enquiry-box input {
      width: 100%;
      padding: 10px;
      margin-bottom: 12px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 14px;
    }

    /* BUTTON */
    .submit-btn {
      width: 100%;
      padding: 12px;
      background-color: #0056d2;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-weight: 600;
      transition: 0.3s;
    }

    .submit-btn:hover {
      background-color: #003e9e;
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
      #admission-banner {
        padding: 60px 15px;
        text-align: center;
      }

      .banner-title {
        font-size: 30px;
      }

      .banner-description {
        font-size: 16px;
      }

      .enquiry-box {
        margin-top: 20px;
      }
    }

    @media (max-width: 576px) {
      .banner-title {
        font-size: 24px;
      }

      .banner-description {
        font-size: 14px;
      }
    }


    /* first part` */


.about-section {
  padding: 70px 20px;
  background: #f8fafc;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* WRAPPER */
.about-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* LEFT CONTENT */
.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #111;
}

.main-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.7;
}

.about-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.6;
}

.about-content span {
  color: #2563eb;
  font-weight: 600;
}

/* HIGHLIGHT TEXT */
.highlight {
  background: #e0ecff;
  padding: 12px;
  border-left: 4px solid #2563eb;
  border-radius: 6px;
  font-weight: 500;
}

/* RIGHT CARD */
.about-card {
  flex: 1;
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.about-card h3 {
  margin-bottom: 20px;
}

.about-card ul {
  list-style: none;
}

.about-card ul li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #444;
}

/* HOVER */
.about-card:hover {
  transform: translateY(-8px);
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-card {
    padding: 20px;
  }
}


   
/* second */

.course-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.course-title {
  font-size: 34px;
  margin-bottom: 10px;
  color: #111;
}

.course-subtitle {
  color: #666;
  margin-bottom: 40px;
}

/* TAG WRAPPER */
.course-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* TAG DESIGN */
.course-tag {
  background: #ffffff;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 14px;
  color: #333;
  box-shadow: 0 5px 12px rgba(0,0,0,0.08);
  transition: 0.3s;
  cursor: pointer;
}

/* HOVER EFFECT */
.course-tag:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-3px);
}

/* 📱 MOBILE */
@media (max-width: 576px) {
  .course-title {
    font-size: 26px;
  }

  .course-tag {
    font-size: 13px;
    padding: 10px 14px;
  }
}

/* third */

.why-section {
  padding: 80px 20px;
  background: #f8fafc;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* WRAPPER */
.why-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
}

/* LEFT */
.why-left {
  flex: 1;
}

.why-left h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #111;
}

.why-left p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.highlight {
  background: #e0ecff;
  padding: 12px;
  border-left: 4px solid #2563eb;
  border-radius: 6px;
  font-weight: 500;
}

/* RIGHT */
.why-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.why-card {
  background: #fff;
  padding: 18px 18px 18px 60px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.why-card span {
  position: absolute;
  left: 18px;
  top: 18px;
  font-weight: bold;
  color: #2563eb;
}

.why-card p {
  font-size: 14px;
  color: #444;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-5px);
  background: #2563eb;
}

.why-card:hover p,
.why-card:hover span {
  color: #fff;
}

/* 📱 TABLET */
@media (max-width: 992px) {
  .why-wrapper {
    flex-direction: column;
  }

  .why-right {
    grid-template-columns: 1fr;
  }
}

/* 📱 MOBILE */
@media (max-width: 576px) {
  .why-left h2 {
    font-size: 26px;
  }
}

/* fourth */

.help-section {
  padding: 80px 20px;
  background: #f5f7fb;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.help-title {
  font-size: 34px;
  margin-bottom: 10px;
  color: #111;
}

.help-subtitle {
  color: #666;
  margin-bottom: 50px;
}

/* GRID */
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.help-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  border-top: 4px solid transparent;
}

/* HOVER */
.help-card:hover {
  transform: translateY(-6px);
  border-top: 4px solid #2563eb;
}

/* TEXT */
.help-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.help-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* 📱 TABLET */
@media (max-width: 992px) {
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 📱 MOBILE */
@media (max-width: 576px) {
  .help-grid {
    grid-template-columns: 1fr;
  }

  .help-title {
    font-size: 26px;
  }

  .help-card {
    text-align: center;
  }
}

/* fifth */

.trust-section {
  padding: 80px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.trust-title {
  font-size: 34px;
  margin-bottom: 10px;
  color: #111;
}

.trust-subtitle {
  color: #666;
  margin-bottom: 50px;
}

/* GRID */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.trust-card {
  background: #f8fafc;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
  text-align: center;
  border: 1px solid #eee;
}

/* ICON CIRCLE */
.trust-card .icon {
  width: 60px;
  height: 60px;
  background: #2563eb;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px;
}

/* TEXT */
.trust-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 14px;
  color: #555;
}

/* HOVER */
.trust-card:hover {
  transform: translateY(-6px);
  background: #2563eb;
}

.trust-card:hover h4,
.trust-card:hover p {
  color: #fff;
}

/* FULL WIDTH CARD */
.full-width {
  grid-column: span 3;
}

/* 📱 TABLET */
@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .full-width {
    grid-column: span 2;
  }
}

/* 📱 MOBILE */
@media (max-width: 576px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: span 1;
  }

  .trust-title {
    font-size: 26px;
  }
}


/* collegee cards */

.college-section {
  padding: 70px 20px;
  background: #f5f7fb;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 10px;
  color: #111;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

/* GRID */
.college-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.college-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 10px;
  font-size: 15px;
  text-align: center;
  color: #333;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
  cursor: pointer;
}

/* HOVER */
.college-card:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-5px);
}

/* 📱 TABLET */
@media (max-width: 992px) {
  .college-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 📱 MOBILE */
@media (max-width: 576px) {
  .college-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
  }
}


/* about us page  */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.admission-section {
  padding: 60px 20px;
  background: #f8f9fc;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* LEFT CONTENT */
.text-content {
  flex: 1;
}

.text-content h2 {
  font-size: 32px;
  color: #222;
  margin-bottom: 20px;
}

.main-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

.highlight {
  background: #e8f0ff;
  padding: 15px;
  border-left: 4px solid #007bff;
  font-weight: 500;
  margin-bottom: 15px;
  border-radius: 6px;
}

.text-content p {
  margin-bottom: 12px;
  color: #444;
  line-height: 1.6;
}

.text-content span {
  color: #007bff;
  font-weight: bold;
}

/* RIGHT CARDS */
.card-section {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.info-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 14px;
  color: #666;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .content-wrapper {
    flex-direction: column;
  }

  .text-content h2 {
    font-size: 24px;
  }

  .card-section {
    grid-template-columns: 1fr;
  }

  .info-card {
    text-align: center;
  }
}


/* second  */

.help-section {
  padding: 60px 20px;
  background: #f4f7fb;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
}

/* GRID LAYOUT */
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD DESIGN */
.help-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.help-card:hover {
  transform: translateY(-6px);
}

/* ICON */
.help-card .icon {
  font-size: 30px;
  margin-bottom: 15px;
}

/* TEXT */
.help-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
}

.help-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 📱 TABLET */
@media (max-width: 992px) {
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 📱 MOBILE */
@media (max-width: 576px) {
  .help-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }

  .help-card {
    padding: 20px;
  }
}

/* third */





.why-section {
  padding: 70px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.why-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 60px;
  color: #111;
}

/* WRAPPER */
.why-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* BOX */
.why-box {
  position: relative;
  background: #f9fbff;
  padding: 25px 25px 25px 70px;
  border-radius: 12px;
  transition: 0.3s;
  border-left: 4px solid #2563eb;
}

/* NUMBER STYLE */
.why-box span {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #2563eb;
}

/* TEXT */
.why-box h4 {
  font-size: 18px;
  color: #222;
}

/* HOVER */
.why-box:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-5px);
}

.why-box:hover h4,
.why-box:hover span {
  color: #fff;
}

/* TABLET */
@media (max-width: 768px) {
  .why-wrapper {
    grid-template-columns: 1fr;
  }

  .why-title {
    font-size: 26px;
  }

  .why-box {
    padding: 20px 20px 20px 60px;
  }

  .why-box span {
    font-size: 22px;
  }
}


/* fourth */


.mv-section {
  padding: 70px 20px;
  background: #f5f7fb;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.mv-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
  color: #111;
}

/* WRAPPER */
.mv-wrapper {
  display: flex;
  gap: 30px;
}

/* CARD */
.mv-card {
  flex: 1;
  padding: 30px;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.mv-card:hover {
  transform: translateY(-8px);
}

/* ICON */
.mv-icon {
  font-size: 35px;
  margin-bottom: 15px;
}

/* HEADINGS */
.mv-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* TEXT */
.mv-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* DIFFERENT COLORS */
.mission {
  border-top: 5px solid #2563eb;
}

.vision {
  border-top: 5px solid #9333ea;
}

/* GRADIENT HOVER */
.mv-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2563eb, #9333ea);
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s;
  z-index: 0;
}

.mv-card:hover::before {
  opacity: 0.08;
}

.mv-card * {
  position: relative;
  z-index: 1;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .mv-wrapper {
    flex-direction: column;
  }

  .mv-title {
    font-size: 26px;
  }

  .mv-card {
    padding: 20px;
  }
}


/* contact */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.contact-section {
  padding: 70px 20px;
  background: #f5f7fb;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.contact-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 10px;
  color: #111;
}

.contact-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

/* WRAPPER */
.contact-wrapper {
  display: flex;
  gap: 30px;
}

/* FORM */
.contact-form {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 15px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #2563eb;
}

/* BUTTON */
button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #1e40af;
}

/* INFO */
.contact-info {
  flex: 1;
  display: grid;
  gap: 20px;
}

.info-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.info-box h4 {
  margin-bottom: 8px;
}

.info-box p {
  color: #555;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-title {
    font-size: 26px;
  }
}


/* footer */


.footer {
  background: #111827;
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* COLUMN */
.footer-col h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #cbd5e1;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #2563eb;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #9ca3af;
}

/* 📱 TABLET */
@media (max-width: 992px) {
  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 📱 MOBILE */
@media (max-width: 576px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 20px;
  }
}