﻿<style>
  body {
    font-family: 'Roboto', sans-serif;
  }

/* ========================Maroon=#851A1A, Yellow=#FFD700*, Ocen-blue=#002B5C========================================================================*/
/*====================================== Site Top Part Design wher Logo and site navigation panel remains (Styling) ================================ */

.smart-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  background-color: #66CC66;
  border-bottom: 5px solid #8B1A1A;

  display: flex;
  /*align-items: center;*/
  justify-content: space-between;

  padding: 12px 30px;      /* ✅ compact */
  min-height: 80px;        /* ✅ flexible */
}

/*----------------Separator for Site Header and Hero Section---------------*/
body {
  padding-top: 105px;
}

/* Logo---May be erased without significant impact because .site-header .logo img works better */
.smart-header .logo img {
  height: 100px;
  width: 150px;
  }

/*.site-header .logo img {
  /*height: 80%; /* Makes the logo height inside site header equal to header height */
  /*width: 15%;	/* if width: auto is set logo will take large size*/
  /*object-fit: contain;
/*}

.site-header .container {
  display: flex;
  /*align-items: center;*/
  justify-content: space-between;
  height: 100%;
}


/*===================================== style for Dropdown items ========================================== */
/* DROPDOWN */

/*.main-nav .nav-list > li > a:hover::after {
/* width: 100%;
/*}

/*.main-nav .nav-list > li > a:hover {
/*  color: #ffd700;
/*}

.dropdown {
  position: relative;
}

/*------------ Dropdown container ------------------------*/
/* ===== Dropdown Styling (Revised) pattern-1===== */

.dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #f8f8f8; /* light grey background instead of white */
  min-width: max-content;     /* dynamic width */
  padding: 10px 0;
  border-radius: 10px;
  box-shadow: 0px 6px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  white-space: nowrap;
}

.dropbtn {
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  display: inline-block;
  font-weight: 500;
  transition: color 0.3s ease;
}

.dropbtn:hover {
  color:  #00CC00;
}

/* Dropdown Box */
.dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: linear-gradient(180deg, #ffffff, #f0f0f0); /* subtle gradient */
  color: #333333; /* text color */
  min-width: max-content;
  padding: 10px 0;
  box-shadow: 0px 6px 15px rgba(0,0,0,0.2); /* softer shadow */
  border-radius: 10px;
  z-index: 1000;
  white-space: nowrap;
  animation: fadeIn 0.3s ease-in-out;
}


/* Dropdown menu pattern-2 */
.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  border-radius: 10px;
  padding: 15px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: none;
  animation: fadeIn .3s ease;
  z-index: 1000;
}

/*----------creats drop down list----------*/
.dropdown:hover .dropdown-menu {
  display: block;
}

/*---drop down list animation for destination and scholarship-----*/
.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #222;
  font-size: 1rem;
  font-weight: 200;
  text-decoration: none;
  transition: background .3s, padding-left .3s;
}


/*----------drop down menu get highlighted by yellow-------------*/
.dropdown-menu li a:hover {
  background: #ffd700;
  padding-left: 25px;
}

/* FadeIn animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}


/*====================================== NAV LIST ======================================================================== */
/* -------------------- Premium Dropdown Styling (Improved Visibility) ---------------------- */
nav {
  display: flex;
  /*align-items: center;*/
  gap: 25px;
}

.main-nav .nav-list {
  display: flex;
  gap: 25px;
  padding: 0;
  margin: 0;
}


.main-nav .nav-list > li   {				/*.main-nav .nav-list > li > a
  text-decoration: none;
  color: #8B1A1A;	/*#2E8B57=Seagreen,#ffffff*/
  font-size: 1.1rem;
  font-weight: 600;
  /*padding: 10px 5px;
  position: relative;
  transition: color .3s ease;
  margin:0;
  display: flex;	/*position of arrow button*/
  list-style: none;
  padding:10;
  gap:15px;
}

.main-nav .nav-list > li > a:hover {
  color: #ffd700;	/*#ffd700=yellow*/
}


/* University Logos Floating Animation */
.university-logos {
  animation: floatLogos 15s linear infinite;
}

.logo-item {
  width: 120px; /* adjust size */
  transition: transform 0.3s;
}

.logo-item:hover {
  transform: scale(1.2);
}

@keyframes floatLogos {
  0% { transform: translateX(0); }
  50% { transform: translateX(-20px); }
  100% { transform: translateX(0); }
}

/* Continuous scrolling marquee for university logos */
.university-marquee {
  overflow: hidden; /* hide scrollbars */
  width: 100%;
  background-color: #f8f9fa;
  padding: 2rem 0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.university-track {
  display: flex;
  width: max-content; /* allows continuous scrolling */
  animation: scrollLogos 20s linear infinite;
}

/*-------------------Start point of styling Logos of different universities that floats -------------*/
.logo-item {
  width: 120px; /* logo size */
  margin: 0 2rem;
  transition: transform 0.3s ease;
}
.logo-item:hover {
  transform: scale(1.2); /* hover zoom effect */
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* adjust for seamless loop */
}
/*---------End of styling Logos of different universities that floats----*/


/*========================================Start of Theme design================================================================= */
/* ===== Hero Section (Full Width, No Padding on Sides) ===== */
.hero-section {
  position: relative;

  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  height: 60vh;
  background-image: url('../images/home_banner_1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}



.hero-content {
  max-width: 1000px;
  padding: 3rem;
  margin: auto;
  text-align: center;
  /*color:#FFD700; /* Maroon=#851A1A, Yellow=#FFD700*, Ocen-blue=#002B5C*/
  transform: translateY(-100px); 	/* move text up */
}


.hero-cta {
  padding-bottom: 2.5rem;
  display: flex;
  justify-content: center;
}


 
/*Optional dark overlay 
.hero-section::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(0, 0, 0, 0.45);
 z-index: 1;
}
*/

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

.hero-section h2 {
    font-size: 3.5rem;
    font-weight: 200;
    margin-bottom: 1rem;
    color:#FFD700;
  }

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #FFFAF0;}	                            /*yellow green=#52D017,FLORAL WHITE=#FFFAF0 #e6e6e6*/
  
/*-----------------Styling Button for Get free consultation------------*/
.btn-primary {
    background-color:#ffcc00;		/*#004080-dark blue*/
    color: #002b5c;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;

  }

 .btn-primary:hover {
    background-color: #8B1A1A;	/*theme dark maroon=#851A1A, blue=#002B5C, yellow green=#52D017, #ffd633*/
    transform: scale(1.05);
  }
/*-----------------End of block-Styling Button for Get free consultation------------*/


/*========================================End of Theme design================================================================= */

/*========================================Decoration for Study Options Section ================================================= */

/*------additional background screen--------------------*/
/*.study-options {
/*  background: linear-gradient(135deg, #f0f4ff, #ffffff);
/*  padding: 60px 0;
/*  border-top: 5px solid #e3e9ff;
/*}

/*-------Extra padding for university and course----------------*/
.option-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  min-height: 200px;   /* optional: equal height if content differs */
}

.option-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(58,123,213,0.2), rgba(0,210,255,0.2));
  transition: all 0.6s ease;
}

/*-----------Animation on option card------*/
.option-card:hover::before {
  left: 100%;
}

/*---------style for option title-------------*/
.option-title {
  color: #004aad;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.option-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
  opacity: 1;			/* opacity value ranges from 0 to 1*/
  transform: translateY(20px);
  transition: all 0.5s ease;
}
/*---------contents moves up and down*--------*/
.option-card:hover .option-list {
  opacity: 1;
  transform: translateY(0);
}

.option-list li {
  margin: 10px 0;
}

.option-list li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.option-list li a:hover {
  color: #0078ff;
}

/*===========================================================End of Section================================================================*/

/* ============================== Watermarked Footer Image for All Pages ================================================================= */
.site-footer {
  position: relative;
  background-color: #DAA520; 			/* keep footer readable on top of watermark, #111=black */
  color: #191970;				/*#fff, All right reserved*/
  text-align: center;
  padding: 20px 20px;
  overflow: hidden;
}

/* Add the footer watermark */
.site-footer::before {
  content: "";
  position: absolute;
  bottom: 10 px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 50%;
  background: url('../images/windsor_main.jpg') no-repeat center bottom;
  background-size: contain;
  opacity: 0.12;              /* subtle watermark effect */
  pointer-events: none;       /* prevents interference with clicks */
  z-index: 0;
}

/* Ensure footer text stays visible above watermark */
.site-footer * {
  position: relative;
  z-index: 1;
}
/* ============================== End of Watermarked Footer Image for All Pages ================================================================= */

@media (max-width: 768px) {
  .uk-why-study .feature {
    flex: 1 1 100%;
  }
  .uk-hero-text h1 {
    font-size: 1.8rem;
  }
  .uk-hero-text p {
    font-size: 1rem;
  }
}

/*================================================added on 26-Dec-2025 ========================================================================*/
.popular-faculties .faculty-card {
  background-color: #ffffff;
  border: 1px solid #ddd;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popular-faculties .faculty-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.popular-faculties .faculty-icon img {
  max-width: 100px;  /* Size of the icon or image */
  margin: 0 auto;
  display: block;
}

.popular-faculties .faculty-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #851A1A;
  text-align: center;
  margin-top: 10px;
}

.popular-faculties .faculty-card:hover .faculty-name {
  color: #FFD700;  /* Highlight color #52D017 */
}


/*================================Increase responsiveness====================================================*/
/* ===================== GLOBAL RESPONSIVE FIXES ===================== */

/* Prevent horizontal scrolling */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Make images responsive */
img {
  max-width: 100%;
  height: auto;
}

/* ===================== TABLETS (≤ 1024px) ===================== */
@media (max-width: 1024px) {

  /* Header adjustments */
  .smart-header {
    padding: 20px 30px;
    height: auto;
  }

  .smart-header .logo img {
    height: 80px;
  }

  /* Navigation spacing */
  .main-nav .nav-list {
    gap: 18px;
  }

  .main-nav .nav-list > li > a {
    font-size: 1rem;
  }

  /* Hero section */
  .hero-section {
    height: 55vh;
  }

  .hero-content {
    padding: 3rem;
    margin-top: 200px;
    margin-left: 40px;
  }

  .hero h2 {
    font-size: 3.5rem;
  }
}

/* ===================== MOBILE (≤ 768px) ===================== */
@media (max-width: 768px) {

  body {
    padding-top: 95px;   /* reasonable spacing */
  }

  .smart-header {
    flex-direction: column;
    /*align-items: center;   /* FIXED */
    justify-content: center;
    flex-wrap:wrap;
    padding: 10px 14px;
    min-height: auto;
  }

  .smart-header .logo {
    margin-bottom: 8px;
  }

  .smart-header .logo img {
    height: 55px;
    max-width: 95%;
  }

  nav {
    width: 100%;
  }

  .main-nav .nav-list {
    width: 100%;
    flex-direction: column;
    /*align-items: center;*/
    justify-content: center;
    gap: 3px;
    margin-top: 2px;
  }

  .main-nav .nav-list > li {
    padding: 5px 0;
  }

  /* Dropdown menus full-width on mobile */
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
  }

  /* HERO */
  .hero-section {
    height: 70vh;
    text-align: center;
  }

  .hero-content {
    padding: 1.5rem 1rem;
  }

  .hero h2 {
    font-size: 2.3rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn-primary {
    width: 100%;
    padding: 12px;
  }
}

/* ===================== LANDSCAPE MOBILE ===================== */
@media (max-width: 768px) and (orientation: landscape) {

  body {
    padding-top: 80px;
  }

  .smart-header {
    flex-direction: row;
    justify-content: space-between;
    /*align-items: center;*/
    flex-wrap: nowrap;      /* row mode stable */
  }
  .smart-header .logo img {
    height: 48px;
    max-width: 40vw;        /* <-- prevents overflow */
    object-fit: contain;
  }

  .main-nav .nav-list {
    flex-direction: row;
    flex-wrap: wrap;        /* <-- allow wrapping instead of overflow */
    gap: 6px;
  }
   /* HERO */
  .hero-section {
    height: 130vh;
    text-align: center;
  }
}


/* ===================== SMALL MOBILE (≤ 480px) ===================== */
@media (max-width: 480px) {

  /* Logo */
  .smart-header .logo img {
    height: 65px;
  }

  /* Hero text */
  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  /* Footer watermark resize */
  .site-footer::before {
    width: 80%;
    height: 80%;
  }
}

/*=============Added on 20-Dec-2025==============================================*
/* ===== Registration Modal Styling ===== */
.registration-box {
  background: linear-gradient(135deg, #004aad, #00c6ff);
  border-radius: 15px;
  padding: 10px;
  border: none;
}

.registration-box .modal-header {
  border-bottom: none;
}

.registration-box .form-control,
.registration-box .form-select {
  border-radius: 10px;
}

.register-btn {
  background: #ffcc00;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  color: #002b5c;
}

.register-btn:hover {
  background: #8B1A1A;
  color: white;
}

/*==========================19-Jan-2026=======================*/
.course-accordion {
  list-style: none;
  padding: 0;
  margin: 0;
}

.course-accordion li {
  margin-bottom: 5px;
}

.course-toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-weight: 500;
  padding: 4px 0;
  cursor: pointer;
}

.course-toggle::after {
  content: "+";
  float: right;
}

.course-toggle[aria-expanded="true"]::after {
  content: "−";
}

.course-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.course-content p {
  margin: 5px 0 0;
  font-size: 0.95rem;
  color: #555;
}

/*==============Find a University==============================*/
/* Custom dropdown styling */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu-custom {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 10px 0;
  margin: 5px 0 0;
  list-style: none;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  min-width: 220px;
}

.dropdown-menu-custom li a {
  display: block;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu-custom li a:hover {
  background-color: #f5f5f5;
}
